mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Add history-file-tree.pug
This commit is contained in:
parent
940b22ef95
commit
e6281911f0
1 changed files with 17 additions and 0 deletions
17
services/web/app/views/project/editor/history-file-tree.pug
Normal file
17
services/web/app/views/project/editor/history-file-tree.pug
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
aside.file-tree.file-tree-history(ng-controller="FileTreeController", ng-class="{ 'multi-selected': multiSelectedCount > 0 }", ng-show="ui.view == 'history' && history.isV2").full-size
|
||||||
|
.toolbar.toolbar-filetree
|
||||||
|
span Modified files
|
||||||
|
|
||||||
|
.file-tree-inner
|
||||||
|
ul.list-unstyled.file-tree-list
|
||||||
|
li(
|
||||||
|
ng-repeat="(pathname, doc) in history.selection.docs"
|
||||||
|
ng-class="{ 'selected': history.selection.pathname == pathname }"
|
||||||
|
)
|
||||||
|
.entity
|
||||||
|
.entity-name.entity-name-history(
|
||||||
|
ng-click="history.selection.pathname = pathname",
|
||||||
|
ng-class="{ 'deleted': doc.deleted }"
|
||||||
|
)
|
||||||
|
i.fa.fa-fw.fa-pencil
|
||||||
|
span {{ pathname }}
|
Loading…
Reference in a new issue