Browse Source

further theming simplification

master
Christian Müller 11 years ago
parent
commit
709cc9347b
  1. 1
      resources/public/js/main.js
  2. 17
      resources/public/js/themes.js
  3. 4
      resources/public/styles/main.less
  4. 2
      src/notehub/views.clj

1
resources/public/js/main.js

@ -38,5 +38,4 @@ function onLoad() { @@ -38,5 +38,4 @@ function onLoad() {
}
if(iosDetected) $note.className += " ui-border"; else $note.focus();
}
showPage();
}

17
resources/public/js/themes.js

@ -108,15 +108,8 @@ fileref.setAttribute("type", "text/css") @@ -108,15 +108,8 @@ fileref.setAttribute("type", "text/css")
fileref.setAttribute("href", fontURL)
document.getElementsByTagName("head")[0].appendChild(fileref)
function showPage() {
less = {
modifyVars: vars
};
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "//cdnjs.cloudflare.com/ajax/libs/less.js/2.1.0/less.min.js";
document.head.appendChild(script);
}
// for the case if main.js is not loaded
var onLoad = showPage;
var less = { modifyVars: vars };
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "//cdnjs.cloudflare.com/ajax/libs/less.js/2.1.0/less.min.js";
document.head.appendChild(script);

4
resources/public/styles/main.less

@ -206,8 +206,8 @@ td { @@ -206,8 +206,8 @@ td {
}
body {
display: flex !important;
display: -webkit-flex !important;
display: flex;
display: -webkit-flex;
min-height: 100vh;
flex-direction: column;
-webkit-flex-direction: column;

2
src/notehub/views.clj

@ -33,7 +33,7 @@ @@ -33,7 +33,7 @@
(include-js "//cdnjs.cloudflare.com/ajax/libs/marked/0.3.2/marked.min.js")
(include-js "/js/md5.js")
(include-js "/js/main.js")))]
[:body {:style "display: none" :onload "onLoad()"} content]))
[:body {:onload "onLoad()"} content]))
(defn- sanitize
"Breakes all usages of <script> & <iframe>"

Loading…
Cancel
Save