mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
BUGFIX: add missing onunmatches causing exceptions in entwine
This commit is contained in:
parent
d782c37044
commit
97e00a35dd
@ -18,6 +18,9 @@
|
|||||||
|
|
||||||
this._super();
|
this._super();
|
||||||
},
|
},
|
||||||
|
onunmatch: function() {
|
||||||
|
this._super();
|
||||||
|
},
|
||||||
|
|
||||||
redraw: function() {
|
redraw: function() {
|
||||||
// Force initialization of tabsets to avoid layout glitches
|
// Force initialization of tabsets to avoid layout glitches
|
||||||
@ -228,6 +231,9 @@
|
|||||||
self.removeForm();
|
self.removeForm();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
onunmatch: function() {
|
||||||
|
this._super();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -237,8 +243,8 @@
|
|||||||
this._super();
|
this._super();
|
||||||
},
|
},
|
||||||
onunmatch: function() {
|
onunmatch: function() {
|
||||||
this._super();
|
|
||||||
this.find('.cms-content-loading-overlay,.cms-content-loading-spinner').remove();
|
this.find('.cms-content-loading-overlay,.cms-content-loading-spinner').remove();
|
||||||
|
this._super();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -107,6 +107,9 @@
|
|||||||
|
|
||||||
this._super();
|
this._super();
|
||||||
},
|
},
|
||||||
|
onunmatch: function() {
|
||||||
|
this._super();
|
||||||
|
},
|
||||||
|
|
||||||
redraw: function() {
|
redraw: function() {
|
||||||
// Force initialization of tabsets to avoid layout glitches
|
// Force initialization of tabsets to avoid layout glitches
|
||||||
|
@ -100,6 +100,9 @@
|
|||||||
self._onLoadNewPage(e, data);
|
self._onLoadNewPage(e, data);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
onunmatch: function() {
|
||||||
|
this._super();
|
||||||
|
},
|
||||||
|
|
||||||
getTreeConfig: function() {
|
getTreeConfig: function() {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
@ -637,6 +637,9 @@ jQuery.noConflict();
|
|||||||
this.redrawTabs();
|
this.redrawTabs();
|
||||||
this._super();
|
this._super();
|
||||||
},
|
},
|
||||||
|
onunmatch: function() {
|
||||||
|
this._super();
|
||||||
|
},
|
||||||
|
|
||||||
redrawTabs: function() {
|
redrawTabs: function() {
|
||||||
this.rewriteHashlinks();
|
this.rewriteHashlinks();
|
||||||
|
@ -9,6 +9,9 @@
|
|||||||
this.redrawTabs();
|
this.redrawTabs();
|
||||||
this._super();
|
this._super();
|
||||||
},
|
},
|
||||||
|
onunmatch: function() {
|
||||||
|
this._super();
|
||||||
|
},
|
||||||
|
|
||||||
redrawTabs: function() {
|
redrawTabs: function() {
|
||||||
this.rewriteHashlinks();
|
this.rewriteHashlinks();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user