gitlab-org--gitlab-foss/app/assets/javascripts/blob/new_blob.js.coffee

21 lines
539 B
CoffeeScript
Raw Normal View History

2015-01-27 04:57:42 +00:00
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()
2015-01-27 06:39:48 +00:00
@editor = editor
2015-01-27 04:57:42 +00:00
if ace_mode
editor.getSession().setMode "ace/mode/" + ace_mode
# Before a form submission, move the content from the Ace editor into the
# submitted textarea
$('form').submit ->
$("#file-content").val(editor.getValue())
2015-01-27 06:39:48 +00:00
editor: ->
return @editor