Development
This commit is contained in:
parent
7eae567e6c
commit
daa1b2a56f
1 changed files with 3 additions and 3 deletions
|
|
@ -2631,14 +2631,14 @@ function startApplyPoller(uuid, bar, mine) {
|
|||
onPending: function(nextIn) {
|
||||
bar.classList.remove('info-bar-running');
|
||||
bar.innerHTML = nextIn === null
|
||||
? (mine ? 'Configuration saved. The processing service is not running.'
|
||||
? (mine ? 'Your changes are pending. The processing service is not running.'
|
||||
: esc(user()) + ' has pending changes. The processing service is not running.')
|
||||
: (mine ? 'Configuration saved. Your changes will be applied ' + timingPhrase(nextIn) + '.'
|
||||
: (mine ? 'Your changes will be applied ' + timingPhrase(nextIn) + '.'
|
||||
: esc(user()) + ' has pending changes which will be applied ' + timingPhrase(nextIn) + '.');
|
||||
},
|
||||
onRunning: function() {
|
||||
bar.classList.add('info-bar-running');
|
||||
bar.innerHTML = mine ? 'Configuration saved. Your changes are being applied now...'
|
||||
bar.innerHTML = mine ? 'Your changes are being applied now...'
|
||||
: esc(user()) + '\'s changes are being applied now...';
|
||||
},
|
||||
onComplete: function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue