mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
FIX JS issue when enabling save buttons for when the content has changed. Current implementation triggers a 'Object is not a function' error. New implementation follows the same logic as in the onmatch function, and uses .button() as the function
This commit is contained in:
parent
9c46c7d1e8
commit
5f2d78a2dc
@ -288,9 +288,9 @@
|
||||
},
|
||||
onunmatch: function(e) {
|
||||
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]');
|
||||
if(publishButton.data('button')) publishButton('option', 'showingAlternate', false);
|
||||
if(publishButton.data('button')) publishButton.button('option', 'showingAlternate', false);
|
||||
this._super(e);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user