From a27ac954cb2314827204c627846e761fb6e19ce2 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Wed, 23 Mar 2016 22:17:38 +0100 Subject: added system status handler 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 + * + * 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 . + */ + +'use strict'; + +function system_init() { + $.getJSON( "/rh-bin/activesystem.json", function(data) { + alert(data); + }); +} -- cgit v0.10.2