diff options
Diffstat (limited to 'res/default.js')
-rw-r--r-- | res/default.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/res/default.js b/res/default.js new file mode 100644 index 0000000..6776fae --- /dev/null +++ b/res/default.js @@ -0,0 +1,25 @@ +function sidebar_close() {
+ $("#sidebar").fadeOut();
+}
+
+function sidebar_open() {
+ $("#sidebar").fadeIn();
+}
+
+function show_loading() {
+ $("#content").html(("<div class='spinner centered'></div>"));
+}
+
+function load(file, title) {
+ show_loading();
+ $("#header").text(title);
+ $.get("file:///H:/ichtml/content/"+file, function(data) {
+ $("#content").html(data);
+ }, "text");
+}
+
+function open_timetable() {
+ sidebar_close();
+ load('timetable.html', 'Stundenplan');
+}
+
|