mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
Merge branch 'master' of https://github.com/codecombat/codecombat
This commit is contained in:
commit
6de62154bd
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ module.exports = class WizardSettingsModal extends View
|
|||
closesOnClickOutside: false
|
||||
|
||||
constructor: (options) ->
|
||||
@onNameChange = _.debounce(@checkNameExists, 200)
|
||||
@onNameChange = _.debounce(@checkNameExists, 500)
|
||||
super options
|
||||
|
||||
events:
|
||||
|
|
|
@ -103,8 +103,8 @@ module.exports = class SpellToolbarView extends View
|
|||
|
||||
updateScroll: ->
|
||||
return unless statementStart = @callState?.statements?[@statementIndex]?.range[0]
|
||||
text = @ace.getValue()
|
||||
currentLine = text.substr(0, statementStart).split('\n').length - 1
|
||||
text = @ace.getValue() # code in editor
|
||||
currentLine = statementStart.row
|
||||
@ace.scrollToLine currentLine, true, true
|
||||
|
||||
setCallState: (callState, statementIndex, @callIndex, @metrics) ->
|
||||
|
|
Loading…
Reference in a new issue