Fixed a bug in $.js which prevented a wysiwyg box to be populated with the original...
authorMarco Zanon <info@marcozanon.com>
Tue, 24 Jan 2012 17:36:07 +0000 (17:36 +0000)
committerMarco Zanon <info@marcozanon.com>
Tue, 24 Jan 2012 17:36:07 +0000 (17:36 +0000)
src/resources/javascript/$.js

index 3dbc80e49413539daee427973f3cfdf5c48fe0b9..baa8e293d8683031354c786b18b84710599934b3 100644 (file)
@@ -87,7 +87,7 @@ function $enableWysiwygBoxEditor(id, content) {
             editor.onInit.add(function(editor) {
                 editor.setContent(content);
                 tinyMCE.dom.Event.add(editor.getWin(), 'blur', function(event) {
-                    m_messagesInterface.fireMessage(id, 'onBlur', {'text': editor.getContent()});
+                    m_messageInterface.fireMessage(id, 'onBlur', {'text': editor.getContent()});
                 });
             });
         },