MINOR Disabled window.onresize events in tiny_mce_improvements.js, method no longer exists and is replaced with event hanlers

This commit is contained in:
Ingo Schommer 2011-03-20 11:18:19 +13:00
parent 7cb35435f1
commit 021121f93a

View File

@ -7,13 +7,13 @@ ToolbarForm.prototype = {
close: function(ed) {
if(this.style.display == 'block') {
this.style.display = 'none';
window.onresize();
// window.onresize();
}
},
open: function(ed) {
if(this.style.display != 'block') {
this.style.display = 'block';
window.onresize();
// window.onresize();
}
},
onsubmit: function() {