BUGFIX: add missing onunmatches causing exceptions in entwine

This commit is contained in:
Mateusz Uzdowski 2012-05-11 17:36:18 +12:00
parent d782c37044
commit 97e00a35dd
5 changed files with 21 additions and 3 deletions

View File

@ -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();
} }
}); });
}); });

View File

@ -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

View File

@ -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;

View File

@ -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();

View File

@ -9,6 +9,9 @@
this.redrawTabs(); this.redrawTabs();
this._super(); this._super();
}, },
onunmatch: function() {
this._super();
},
redrawTabs: function() { redrawTabs: function() {
this.rewriteHashlinks(); this.rewriteHashlinks();