2017-12-20 11:42:23 -05:00
|
|
|
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",
|
2018-03-12 07:47:56 -04:00
|
|
|
ng-class="{ 'deleted': !!doc.deletedAtV }"
|
2017-12-20 11:42:23 -05:00
|
|
|
)
|
|
|
|
i.fa.fa-fw.fa-pencil
|
|
|
|
span {{ pathname }}
|