projects
/
Macaco
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b18de45
)
Fixed a bug in $.js which prevented a wysiwyg box to be populated with the original...
author
Marco Zanon
<info@marcozanon.com>
Tue, 24 Jan 2012 17:36:07 +0000
(17:36 +0000)
committer
Marco Zanon
<info@marcozanon.com>
Tue, 24 Jan 2012 17:36:07 +0000
(17:36 +0000)
src/resources/javascript/$.js
patch
|
blob
|
history
diff --git
a/src/resources/javascript/$.js
b/src/resources/javascript/$.js
index 3dbc80e49413539daee427973f3cfdf5c48fe0b9..baa8e293d8683031354c786b18b84710599934b3 100644
(file)
--- a/
src/resources/javascript/$.js
+++ b/
src/resources/javascript/$.js
@@
-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_message
s
Interface.fireMessage(id, 'onBlur', {'text': editor.getContent()});
+ m_messageInterface.fireMessage(id, 'onBlur', {'text': editor.getContent()});
});
});
},