mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
FIX: Changetracker causing 'saveButton is not a function' error
Regression from 1571d35
This commit is contained in:
parent
046a5fd6bb
commit
034bfc35c4
@ -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