21 lines
504 B
CoffeeScript
21 lines
504 B
CoffeeScript
|
class @NewBlob
|
||
|
constructor: (assets_path, mode)->
|
||
|
ace.config.set "modePath", assets_path + '/ace'
|
||
|
ace.config.loadModule "ace/ext/searchbox"
|
||
|
if mode
|
||
|
ace_mode = mode
|
||
|
editor = ace.edit("editor")
|
||
|
editor.focus()
|
||
|
@editor = editor
|
||
|
|
||
|
if ace_mode
|
||
|
editor.getSession().setMode "ace/mode/" + ace_mode
|
||
|
|
||
|
$(".js-commit-button").click ->
|
||
|
$("#file-content").val editor.getValue()
|
||
|
$(".file-editor form").submit()
|
||
|
return false
|
||
|
|
||
|
editor: ->
|
||
|
return @editor
|