2014-06-28 07:07:18 -04:00
|
|
|
div.full-size(
|
|
|
|
ng-show="ui.view == 'editor'"
|
|
|
|
layout="pdf"
|
2014-07-22 08:33:01 -04:00
|
|
|
layout-disabled="ui.pdfLayout != 'sideBySide'"
|
2014-07-31 07:42:06 -04:00
|
|
|
mask-iframes-on-resize="true"
|
2014-06-28 07:07:18 -04:00
|
|
|
resize-on="layout:main:resize"
|
2014-07-02 08:23:04 -04:00
|
|
|
resize-proportionally="true"
|
|
|
|
initial-size-east="'50%'"
|
2016-02-23 10:21:22 -05:00
|
|
|
minimum-restore-size-east="300"
|
2014-06-28 07:07:18 -04:00
|
|
|
)
|
|
|
|
.ui-layout-center
|
2014-06-28 08:25:06 -04:00
|
|
|
.loading-panel(ng-show="!editor.sharejs_doc || editor.opening")
|
2016-05-23 10:03:26 -04:00
|
|
|
span(ng-show="editor.open_doc_id")
|
|
|
|
i.fa.fa-spin.fa-refresh
|
|
|
|
| #{translate("loading")}...
|
|
|
|
span(ng-show="!editor.open_doc_id")
|
|
|
|
i.fa.fa-arrow-left
|
|
|
|
| #{translate("open_a_file_on_the_left")}
|
2014-06-26 11:39:52 -04:00
|
|
|
|
2014-06-28 07:07:18 -04:00
|
|
|
#editor(
|
2014-07-09 10:38:38 -04:00
|
|
|
ace-editor="editor",
|
2014-06-28 07:07:18 -04:00
|
|
|
ng-show="!!editor.sharejs_doc && !editor.opening"
|
|
|
|
theme="settings.theme",
|
|
|
|
keybindings="settings.mode",
|
|
|
|
font-size="settings.fontSize",
|
|
|
|
auto-complete="settings.autoComplete",
|
2016-02-04 09:30:35 -05:00
|
|
|
spell-check="true",
|
2014-06-28 07:07:18 -04:00
|
|
|
spell-check-language="project.spellCheckLanguage",
|
2014-06-30 08:41:32 -04:00
|
|
|
highlights="onlineUserCursorHighlights[editor.open_doc_id]"
|
2014-06-28 07:07:18 -04:00
|
|
|
show-print-margin="false",
|
|
|
|
sharejs-doc="editor.sharejs_doc",
|
|
|
|
last-updated="editor.last_updated",
|
|
|
|
cursor-position="editor.cursorPosition",
|
2014-06-30 08:41:32 -04:00
|
|
|
goto-line="editor.gotoLine",
|
|
|
|
resize-on="layout:main:resize,layout:pdf:resize",
|
2014-07-03 10:05:35 -04:00
|
|
|
annotations="pdf.logEntryAnnotations[editor.open_doc_id]",
|
2014-07-21 10:39:15 -04:00
|
|
|
read-only="!permissions.write",
|
2016-07-05 11:02:46 -04:00
|
|
|
on-ctrl-enter="recompileViaKey"
|
2014-06-28 07:07:18 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
.ui-layout-east
|
2014-07-22 08:33:01 -04:00
|
|
|
div(ng-if="ui.pdfLayout == 'sideBySide'")
|
|
|
|
include ./pdf
|
2014-06-30 13:35:01 -04:00
|
|
|
|
|
|
|
.ui-layout-resizer-controls.synctex-controls(
|
2014-07-21 07:30:34 -04:00
|
|
|
ng-show="!!pdf.url && settings.pdfViewer == 'pdfjs'"
|
2014-06-30 13:35:01 -04:00
|
|
|
ng-controller="PdfSynctexController"
|
|
|
|
)
|
|
|
|
a.btn.btn-default.btn-xs(
|
2014-08-20 09:31:44 -04:00
|
|
|
tooltip="#{translate('go_to_code_location_in_pdf')}"
|
2014-06-30 13:35:01 -04:00
|
|
|
tooltip-placement="right"
|
|
|
|
tooltip-append-to-body="true"
|
|
|
|
ng-click="syncToPdf()"
|
|
|
|
)
|
|
|
|
i.fa.fa-long-arrow-right
|
|
|
|
br
|
|
|
|
a.btn.btn-default.btn-xs(
|
2015-06-03 06:14:26 -04:00
|
|
|
tooltip-html="'#{translate('go_to_pdf_location_in_code')}'"
|
2014-06-30 13:35:01 -04:00
|
|
|
tooltip-placement="right"
|
|
|
|
tooltip-append-to-body="true"
|
|
|
|
ng-click="syncToCode()"
|
|
|
|
)
|
2014-07-22 08:33:01 -04:00
|
|
|
i.fa.fa-long-arrow-left
|
|
|
|
|
|
|
|
div.full-size(
|
|
|
|
ng-if="ui.pdfLayout == 'flat'"
|
|
|
|
ng-show="ui.view == 'pdf'"
|
|
|
|
)
|
|
|
|
include ./pdf
|
|
|
|
|