Merge pull request #461 from mateusz/entwines3

BUGFIX: add missing onunmatches causing exceptions in entwine
This commit is contained in:
Sean Harvey 2012-05-17 19:29:38 -07:00
commit 4f42b2e773
5 changed files with 21 additions and 3 deletions

View File

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

View File

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

View File

@ -100,6 +100,9 @@
self._onLoadNewPage(e, data);
});
},
onunmatch: function() {
this._super();
},
getTreeConfig: function() {
var self = this;

View File

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

View File

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