13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
window.submitConfirm = function(event) {
|
|
|
|
zui.Modal.open({id: 'progress'});
|
|
$(event.target).addClass('disabled');
|
|
$(event.target).css('pointer-events', 'none');
|
|
$('#upgradingTips').removeClass('hidden');
|
|
if(writable)
|
|
{
|
|
updateProgressInterval();
|
|
updateProgress();
|
|
}
|
|
}
|