Add simple webclient to manage zones

This commit is contained in:
Robert Schumann
2017-12-28 01:16:14 +01:00
parent caf61d4b4d
commit 6d98ebcfb7
19 changed files with 3191 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
$.mobile.linkBindingEnabled = false;
$.mobile.hashListeningEnabled = false;
$.mobile.pushStateEnabled = false;
// Remove page from DOM when it's being replaced
$('div[data-role="page"]').live('pagehide', function (event, ui) {
$(event.currentTarget).remove();
});
});