Navigation Menu

Skip to content

Commit

Permalink
MINOR Disabled window.onresize events in tiny_mce_improvements.js, me…
Browse files Browse the repository at this point in the history
…thod no longer exists and is replaced with event hanlers
  • Loading branch information
chillu committed Mar 19, 2011
1 parent 7cb3543 commit 021121f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/tiny_mce_improvements.js
Expand Up @@ -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() {
Expand Down

0 comments on commit 021121f

Please sign in to comment.