mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merge pull request #945 from patbolo/save-buttons-status-issue
FIX JS issue when enabling save buttons for when the content has changed...
This commit is contained in:
commit
311e0d0ede
@ -288,9 +288,9 @@
|
|||||||
},
|
},
|
||||||
onunmatch: function(e) {
|
onunmatch: function(e) {
|
||||||
var saveButton = this.find('button[name=action_save]');
|
var saveButton = this.find('button[name=action_save]');
|
||||||
if(saveButton.data('button')) saveButton('option', 'showingAlternate', false);
|
if(saveButton.data('button')) saveButton.button('option', 'showingAlternate', false);
|
||||||
var publishButton = this.find('button[name=action_publish]');
|
var publishButton = this.find('button[name=action_publish]');
|
||||||
if(publishButton.data('button')) publishButton('option', 'showingAlternate', false);
|
if(publishButton.data('button')) publishButton.button('option', 'showingAlternate', false);
|
||||||
this._super(e);
|
this._super(e);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user