mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
8a46a385f7
Move File Preview Footer to Header GitOrigin-RevId: b6c8d09f82520ceaebf0c6ee414445e4487e8894
41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
div.binary-file.full-size(
|
|
ng-controller="BinaryFileController"
|
|
ng-show="ui.view == 'file'"
|
|
ng-if="openFile"
|
|
)
|
|
|
|
include ./binary-file-header
|
|
|
|
img(
|
|
ng-show="!failedLoad"
|
|
ng-src="/project/{{ project_id }}/file/{{ openFile.id }}"
|
|
ng-if="isImageFile()"
|
|
ng-class="{'img-preview': !imgLoaded}"
|
|
onerror="sl_binaryFilePreviewError()"
|
|
onabort="sl_binaryFilePreviewError()"
|
|
onload="sl_binaryFilePreviewLoaded()"
|
|
)
|
|
|
|
img(
|
|
ng-show="!failedLoad"
|
|
ng-src="/project/{{ project_id }}/file/{{ openFile.id }}?format=png"
|
|
ng-if="isPreviewableFile()"
|
|
ng-class="{'img-preview': !imgLoaded}"
|
|
onerror="sl_binaryFilePreviewError()"
|
|
onabort="sl_binaryFilePreviewError()"
|
|
onload="sl_binaryFilePreviewLoaded()"
|
|
)
|
|
|
|
div(ng-if="isTextFile() && !textPreview.error")
|
|
div.text-loading(ng-show="textPreview.loading && !textPreview.error")
|
|
| #{translate('loading')}...
|
|
div.text-preview(ng-show="textPreview.data && !textPreview.loading && !textPreview.error")
|
|
div.scroll-container
|
|
p
|
|
| {{ textPreview.data }}
|
|
p(ng-show="textPreview.shouldShowDots")
|
|
| ...
|
|
|
|
p.no-preview(
|
|
ng-if="failedLoad || textPreview.error || isUnpreviewableFile()"
|
|
) #{translate("no_preview_available")}
|