sistemato loader un'altra volta
This commit is contained in:
parent
813d70c23f
commit
86c0a9bfc7
1 changed files with 14 additions and 1 deletions
|
@ -39,6 +39,8 @@ FONTE.hrefseguente = "";
|
||||||
FONTE.contentListId = '#mostralistainfo';
|
FONTE.contentListId = '#mostralistainfo';
|
||||||
FONTE.contentListClass = '.news';
|
FONTE.contentListClass = '.news';
|
||||||
FONTE.ajaxError = false;
|
FONTE.ajaxError = false;
|
||||||
|
|
||||||
|
FONTE.back_pressed = false;
|
||||||
/*
|
/*
|
||||||
* data ultimo aggiornamento
|
* data ultimo aggiornamento
|
||||||
*/
|
*/
|
||||||
|
@ -160,9 +162,20 @@ function initMainPage() {
|
||||||
document.addEventListener("deviceready", onDeviceReady, false);
|
document.addEventListener("deviceready", onDeviceReady, false);
|
||||||
//le cose all'inizio
|
//le cose all'inizio
|
||||||
|
|
||||||
|
|
||||||
|
$(window).on("navigate", function (event, data) {
|
||||||
|
var direction = data.state.direction;
|
||||||
|
if (direction == 'back') {
|
||||||
|
FONTE.back_pressed = true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
FONTE.back_pressed = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
$(document).on("pagecontainershow", function (e, ui) {
|
$(document).on("pagecontainershow", function (e, ui) {
|
||||||
var pageId = $('body').pagecontainer('getActivePage').prop('id');
|
var pageId = $('body').pagecontainer('getActivePage').prop('id');
|
||||||
if (pageId != 'about') {
|
if ((pageId == 'ilove' || pageId == 'info' || pageId == 'events') && !FONTE.back_pressed) {
|
||||||
$.mobile.loading('show');
|
$.mobile.loading('show');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue