diff --git a/fxmanifest.lua b/fxmanifest.lua index fd60bcf..8faba61 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -39,9 +39,9 @@ ui_page 'html/index.html' files { 'html/index.html', - 'html/style.css', - 'html/drawtext.css', - 'html/*.js' + 'html/css/style.css', + 'html/css/drawtext.css', + 'html/js/*.js' } dependencies { diff --git a/html/drawtext.css b/html/css/drawtext.css similarity index 99% rename from html/drawtext.css rename to html/css/drawtext.css index 3892a85..489e967 100644 --- a/html/drawtext.css +++ b/html/css/drawtext.css @@ -73,4 +73,4 @@ transition: 0.5s; left: -100px; opacity: 0; -} \ No newline at end of file +} diff --git a/html/style.css b/html/css/style.css similarity index 99% rename from html/style.css rename to html/css/style.css index c260cce..4581314 100644 --- a/html/style.css +++ b/html/css/style.css @@ -35,4 +35,4 @@ html::-webkit-scrollbar { border-radius: 10px; box-shadow: 0rem 0rem 0.1rem 0.05rem #000000; border-left: 5px solid #f44236; -} \ No newline at end of file +} diff --git a/html/app.js b/html/js/app.js similarity index 100% rename from html/app.js rename to html/js/app.js diff --git a/html/config.js b/html/js/config.js similarity index 100% rename from html/config.js rename to html/js/config.js diff --git a/html/drawtext.js b/html/js/drawtext.js similarity index 99% rename from html/drawtext.js rename to html/js/drawtext.js index 544b450..282d522 100644 --- a/html/drawtext.js +++ b/html/js/drawtext.js @@ -121,4 +121,4 @@ const addClass = (element, name) => { if (!element.classList.contains(name)) { element.classList.add(name); } -}; \ No newline at end of file +}; diff --git a/html/testing.js b/html/js/testing.js similarity index 100% rename from html/testing.js rename to html/js/testing.js diff --git a/html/utils.js b/html/js/utils.js similarity index 100% rename from html/utils.js rename to html/js/utils.js