You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
2.5 KiB
43 lines
2.5 KiB
<div class="presentation"> |
|
<div class="presentationpane nicescroll"> |
|
<div class="welcome container-fluid" ng-show="loading"> |
|
<h1>{{_('Loading presentation ...')}}</h1> |
|
<div class="progress" ng-show="downloadSize > 0"> |
|
<span class="download-info">{{downloadSize|humanizeFilesize}} <span ng-show="downloading">/ {{downloadProgress}}%</span></span> |
|
<div class="progress-bar progress-bar-success"></div> |
|
</div> |
|
</div> |
|
<div class="welcome container-fluid" ng-hide="maxPageNumber !== -1 || loading"> |
|
<h1>{{_('Please upload a PDF document')}}</h1> |
|
<div class="center-block"> |
|
<p>{{_('Documents are shared with everyone in this call.')}}</p> |
|
<p><button class="btn btn-lg btn-primary">{{_('Upload')}}</button></p> |
|
<p>{{_('You can drag files here too.')}}</p> |
|
</div> |
|
</div> |
|
<pdfcanvas ng-hide="maxPageNumber === -1 || loading" /> |
|
</div> |
|
<div class="overlaybar form-horizontal" ng-class="{notvisible: hideControlsBar}"> |
|
<a class="overlaybar-button" ng-model="hideControlsBar" btn-checkbox btn-checkbox btn-checkbox-true="0" btn-checkbox-false="1" title="{{_('Presentation controls')}}"><i class="fa fa-cogs"></i></a> |
|
<div class="overlaybar-content"> |
|
<div class="pagecontrol" ng-show="(maxPageNumber !== -1 && !downloading) || visibleSharedFiles.length"> |
|
<div class="clearfix" ng-show="maxPageNumber !== -1 && !downloading"> |
|
<a class="overlaybar-button btn-prev" ng-click="prevPage()" ng-show="currentPageNumber > 1" title="{{_('Prev')}}"><i class="fa fa-backward"></i></a> |
|
<div class="pageinfo center-block"><input class="form-control input-sm" type="number" ng-model="currentPageNumber" /> / {{ maxPageNumber }}</div> |
|
<a class="overlaybar-button btn-next" ng-click="nextPage()" ng-show="currentPageNumber < maxPageNumber" title="{{_('Next')}}"><i class="fa fa-forward"></i></a> |
|
</div> |
|
</div> |
|
<div class="presentations nicescroll" ng-show="visibleSharedFiles.length"> |
|
<div class="thumbnail" ng-repeat="info in visibleSharedFiles | orderBy : 'sortkey'" ng-click="selectPresentation(info)" title="{{ info.name }}"> |
|
<div class="fa active fa-check" ng-show="info.id === currentFileInfo.id"></div> |
|
<a class="btn btn-danger delete" ng-click="deletePresentation($event, info)"><i class="fa fa-trash-o fa-lg"></i></a> |
|
<div class="fa filetype fa-file-pdf-o"></div> |
|
<div class="caption"> |
|
<span class="name">{{ info.name }}</span><br> |
|
<span class="size">{{ info.size|humanizeFilesize }}</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div>
|
|
|