diff --git a/src/View.hs b/src/View.hs index 04d7d1e..6febbce 100644 --- a/src/View.hs +++ b/src/View.hs @@ -164,7 +164,7 @@ renderAdmin renderAdmin globalState = do head_ $ do includeJS "/js.js" - includeJS "/jquery-2.2.0.min.js" + includeJS "/jquery-2.2.0.js" includeJS "/sorttable.js" includeCSS "/markup.css" includeCSS "/admin.css" @@ -558,9 +558,9 @@ wrapPage pageTitle page = doctypehtml_ $ do "https://github.com/aelve/guide/issues"); return false; }; |] - includeJS "/jquery-2.2.0.min.js" + includeJS "/jquery-2.2.0.js" -- See Note [autosize] - includeJS "/autosize-3.0.15.min.js" + includeJS "/autosize-3.0.15.js" onPageLoad (JS "autosize($('textarea'));") -- The order is important – markup.css overrides some rules from -- highlight.css (e.g. div.sourceCode), css.css overrides the rule for diff --git a/static/autosize-3.0.15.min.js b/static/autosize-3.0.15.js similarity index 100% rename from static/autosize-3.0.15.min.js rename to static/autosize-3.0.15.js diff --git a/static/jquery-2.2.0.min.js b/static/jquery-2.2.0.js similarity index 100% rename from static/jquery-2.2.0.min.js rename to static/jquery-2.2.0.js