diff options
author | Roman Gräf <roman.graef@gmail.com> | 2017-11-01 13:43:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-01 13:43:26 +0100 |
commit | 663ef8ebf9aee1e06086af1e326bf0386c7b3acb (patch) | |
tree | 5665d17f20d5097cecd51adaba3b6f1fb1cbbf68 | |
parent | f892ed4301e1a7e51bd0c244e4b472adec253965 (diff) | |
download | ichtml-663ef8ebf9aee1e06086af1e326bf0386c7b3acb.tar.gz ichtml-663ef8ebf9aee1e06086af1e326bf0386c7b3acb.tar.bz2 ichtml-663ef8ebf9aee1e06086af1e326bf0386c7b3acb.zip |
Update default.js
-rw-r--r-- | res/default.js | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/res/default.js b/res/default.js index 5fd0956..087e6c2 100644 --- a/res/default.js +++ b/res/default.js @@ -19,14 +19,6 @@ function load(file, title) { }, "text");
}
-var contentid = 0;
-var contents = [];
-
-function load_content(id){
- sidebar_close();
- load(contents[id].url, contents[id].name);
-}
-
function onload() {
$.getJSON("content/content.json", function(data){
var el = $("#sidebar")[0];
@@ -42,10 +34,11 @@ function onload() { atag.onclick = "sidebar_close()";
}
if(load=="content"){
- contents[contentid] = item;
atag.href = "#";
- atag.onclick = "load_content("+contentid+")";
- contentid++;
+ atag.onclick = function(){
+ sidebar_close();
+ load(item.url, item.name);
+ };
}
var texttag = document.createTextNode(name);
if(img) {
|