2015-04-26 12:48:37 +05:30
|
|
|
.file-holder.file
|
|
|
|
.file-title
|
|
|
|
.editor-ref
|
|
|
|
%i.fa.fa-code-fork
|
|
|
|
= ref
|
|
|
|
%span.editor-file-name
|
|
|
|
- if @path
|
|
|
|
%span.monospace
|
|
|
|
= @path
|
|
|
|
|
|
|
|
- if current_action?(:new) || current_action?(:create)
|
|
|
|
\/
|
|
|
|
= text_field_tag 'file_name', params[:file_name], placeholder: "File name",
|
|
|
|
required: true, class: 'form-control new-file-name'
|
2015-09-25 12:07:36 +05:30
|
|
|
.pull-right
|
|
|
|
= select_tag :encoding, options_for_select([ "base64", "text" ], "text"), class: 'form-control'
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
.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
|