src/tools/console.coffee in luca-0.9.6 vs src/tools/console.coffee in luca-0.9.7
- old
+ new
@@ -8,30 +8,30 @@
history: []
historyIndex: 0
width: 1000
componentEvents:
- "code_input key:keyup" : "historyUp"
- "code_input key:keydown" : "historyDown"
- "code_input key:enter" : "runCommand"
+ "input key:keyup" : "historyUp"
+ "input key:keydown" : "historyDown"
+ "input key:enter" : "runCommand"
compileOptions:
bare: true
components:[
type: "code_mirror_field"
- getter: "getCodeMirror"
+ role: "code_mirror"
additionalClassNames: "clearfix"
name: "code_output"
readOnly: true
lineNumbers: false
mode: "javascript"
lineWrapping: true
gutter: false
,
type: "text_field"
name: "code_input"
- getter: "getInput"
+ role: "input"
lineNumbers: false
height: '30px'
maxHeight: '30px'
gutter: false
autoBindEventHandlers: true
\ No newline at end of file