Hi,
I don't know if is possible in the latest version, but my solution is add:
$(document).on({
ajaxStart:
function
() {
//alert('Inicio');
var
$div = $(
'<div id = "cargando" class="modall"></div>'
);
$(
"body"
).append($div);
$(
"#cargando"
).show().css(
'display'
,
'block'
);
},
ajaxStop:
function
() {
$(
"#cargando"
).show().css(
'display'
,
'none'
);
$(
'#cargando'
).remove();
//alert('Fin');
}
});
All this before line:
app.keepActiveState =
function
_keepActiveState(item) {...
I know that is a poor solution, but is something :P
regreets...
Pd: excuse me my bad english...