Browse Source

Prevent leaving the DB update page while in progress

tags/v9.0beta1
Vincent Petry 8 years ago
parent
commit
06ddd40886
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      core/js/update.js

+ 7
- 0
core/js/update.js View File

@@ -27,6 +27,11 @@
this.$el = $el;

this._started = true;

$(window).on('beforeunload.inprogress', function () {
return t('core', 'The upgrade is in progress, leaving this page might interrupt the process in some environments.');
});

this.addMessage(t(
'core',
'Updating {productName} to version {version}, this may take a while.', {
@@ -61,6 +66,8 @@
.appendTo($el);
});
updateEventSource.listen('done', function() {
$(window).off('beforeunload.inprogress');

if (hasWarnings) {
$('<span>').addClass('bold')
.append('<br />')

Loading…
Cancel
Save