С jquery.mobile-1.0rc1 ; получить ошибку при работе в простом диалоге -
сообщение об ошибке в Chrome-
Uncaught TypeError: Object #<Object> has no method 'pageLoading'
& в FF-
$.mobile.pageLoading() is not a function
Вот фрагмент кода -
$(document).delegate('#importCCRLink', 'click', function() {
$(this).simpledialog({
'mode' : 'bool',
'prompt' : 'Are you sure to import?',
'useModal': true,
'buttons' : {
'OK': {
click: function () {
showTempLoading();
},
theme: "p"
},
'Cancel': {
click: function () {
//alert('Cancel');
}
}
}
})
})
function showTempLoading()
{
$.mobile.pageLoading();
}
- любая идея!