Skip to content

Commit f1a5b99

Browse files
committed
edited message Development mode
1 parent a777c31 commit f1a5b99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

draceditor/static/js/draceditor.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,13 +150,13 @@ $(document).ready(function(){
150150
var editor = CodeMirror.fromTextArea(textArea, {
151151
onKeyEvent: function(e , s){
152152
if (s.type == "keyup") {
153-
console.log("test");
153+
console.log("test"); // this dosn't show anything
154154
}
155155
}
156156
});
157-
console.log(editor);
157+
console.log(editor); // this work well.
158158
editor.on("keyup", function(editor, event) {
159-
console.log(editor);
159+
console.log(editor); // this dosn't show anything
160160
});
161161
});
162162
*/

0 commit comments

Comments
 (0)