debian-mirror-gitlab/app/assets/javascripts/blob/new_blob.js.coffee

21 lines
504 B
CoffeeScript
Raw Normal View History

2015-04-26 12:48:37 +05:30
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