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