MINOR Fixed async entwine redraw calls in HtmlEditorField.js (regression from fdebedd1)

This commit is contained in:
Ingo Schommer 2012-05-20 13:35:12 +02:00
parent 7ab47b6493
commit 0cbb1b11e3

View File

@ -295,7 +295,6 @@ ss.editorWrappers['default'] = ss.editorWrappers.tinyMCE;
url: url,
success: function(html) {
dialog.html(html);
dialog.getForm().redraw();
}
});
}
@ -356,6 +355,8 @@ ss.editorWrappers['default'] = ss.editorWrappers.tinyMCE;
this.setEditor(ss.editorWrappers['default']());
this._super();
this.redraw();
},
redraw: function() {
},