summaryrefslogtreecommitdiff
path: root/www/js
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-03-23 21:17:38 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-03-23 21:17:38 (GMT)
commita27ac954cb2314827204c627846e761fb6e19ce2 (patch)
tree1d5ce611d08407fb6bfe07349712fc8b0d52d2a2 /www/js
parent77b1cf3156c0c77a993d9df5e12b9d62e67920da (diff)
added system status handler
Diffstat (limited to 'www/js')
-rw-r--r--www/js/system.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/www/js/system.js b/www/js/system.js
new file mode 100644
index 0000000..0c9534c
--- /dev/null
+++ b/www/js/system.js
@@ -0,0 +1,28 @@
+/*
+ * rhrdweb
+ *
+ * Copyright (C) 2016 Christian Pointner <equinox@helsinki.at>
+ *
+ * This file is part of rhrdweb.
+ *
+ * rhrdweb is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * rhrdweb is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with rhrdweb. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+'use strict';
+
+function system_init() {
+ $.getJSON( "/rh-bin/activesystem.json", function(data) {
+ alert(data);
+ });
+}