12345678910111213141516171819202122232425262728293031323334353637383940 |
- <table class="table-striped" ng-show="false">
- <thead>
- <tr>
- <th>Name</th>
- <th>Kind</th>
- <th>Date Modified</th>
- <th>Author</th>
- <th>Size</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="file in files track by $index" ng-dblclick="openNote(file)" >
- <td>{{file.path}}</td>
- <td>{{file.type}}</td>
- <td>{{file.modified_at}}</td>
- <td>{{file.author}}</td>
- <td>{{file.size}}</td>
- </tr>
- </tbody>
- </table>
- <div class="file-view" style="height: 100%; overflow-y: scroll">
- <ul id="grid" infinite-scroll='infiniteScroll()' infinite-scroll-distance='4' infinite-scroll-immediate-check="false" infinite-scroll-parent="true">
- <li id="{{file.title}}" ng-repeat="file in files track by $index" ng-dblclick="openFile(file)" class="file-view-item" ng-class="fader" isotope-item="{{file.path}}" style="display: block; opacity: 0;">
- <div class="thumbnail-icon" ng-show="file.type != 'Folder'" ng-right-click="fileContextMenu(file)">
- <img src="{{getImageURL(file.path)}}" ng-hide="isImage(file.type)">
- <img src="{{file.thumbnail}}" ng-show="isImage(file.type)">
- </div>
- <div class="notebook-icon ng-hide" ng-show="file.type == 'Folder'">
- <img class="notebook-thumbnail" src="content/imgs/folder-gray-icon.png" >
- <div class="notebook-icon-title">{{file.title}}</div>
- <div class="notebook-icon-info">{{file.size}}</div>
- </div>
- <div class="icon-name" ng-show="file.type != 'Folder'">{{file.title}}</div>
- <div class="icon-name" ng-show="file.type == 'Folder'">{{file.title}}</div>
- </li>
- <div style='clear: both;'></div>
- </ul>
- </div>
|