mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-18 10:16:34 +00:00
11 lines
379 B
JavaScript
11 lines
379 B
JavaScript
$(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();
|
|
});
|
|
}); |