mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
28 lines
1.2 KiB
Text
28 lines
1.2 KiB
Text
// TODO: refactor to be like other modals
|
|
.modal-dialog
|
|
.modal-header
|
|
button(type='button', data-dismiss="modal", aria-hidden="true").close ×
|
|
h3 Editor Settings
|
|
|
|
.modal-body
|
|
.form
|
|
.form-group
|
|
label(for="keyBindings")
|
|
select#keyBindings(name="keyBindings", type="checkbox", checked=multiplayer)
|
|
option(value="default" selected=(keyBindings === "default")) Default (Ace)
|
|
option(value="vim" selected=(keyBindings === "vim")) Vim
|
|
option(value="emacs" selected=(keyBindings === "emacs")) Emacs
|
|
span.help-block Adds additional shortcuts known from the common editors.
|
|
.form-group.checkbox
|
|
label(for="invisibles")
|
|
input#invisibles(name="invisibles", type="checkbox", checked=invisibles)
|
|
| Show Invisibles
|
|
span.help-block Displays invisibles such as spaces or tabs.
|
|
.form-group.checkbox
|
|
label(for="indentGuides")
|
|
input#indentGuides(name="indentGuides", type="checkbox", checked=indentGuides)
|
|
| Show Indent Guides
|
|
span.help-block Displays vertical lines to see indentation better.
|
|
|
|
.modal-footer
|
|
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="modal.close").btn.btn-primary Close
|