76ed2afcfc
Now it will work on any field inside that form, and it's easier to scope new behavior, which is what we're adding next!
24 lines
755 B
Text
24 lines
755 B
Text
.file-holder.file.append-bottom-default
|
|
.file-title.clearfix
|
|
.editor-ref
|
|
= icon('code-fork')
|
|
= ref
|
|
%span.editor-file-name
|
|
= @path
|
|
|
|
- if current_action?(:new) || current_action?(:create)
|
|
%span.editor-file-name
|
|
\/
|
|
= text_field_tag 'file_name', params[:file_name], placeholder: "File name",
|
|
required: true, class: 'form-control new-file-name'
|
|
|
|
.pull-right
|
|
= select_tag :encoding, options_for_select([ "base64", "text" ], "text"), class: 'select2'
|
|
|
|
.file-content.code
|
|
%pre.js-edit-mode-pane#editor #{params[:content] || local_assigns[:blob_data]}
|
|
- if local_assigns[:path]
|
|
.js-edit-mode-pane#preview.hide
|
|
.center
|
|
%h2
|
|
%i.icon-spinner.icon-spin
|