Add burger button to also open context-menu

This commit is contained in:
Johannes Zellner
2020-07-22 21:38:39 +02:00
parent 38682e48d4
commit 77300d6858

View File

@@ -251,9 +251,10 @@
<thead>
<tr>
<th style="width: 3%;">&nbsp;</th>
<th style="width:77%">Name</th>
<th style="width:82%">Name</th>
<th style="width:10%">Size</th>
<th style="width:10%">Owner</th>
<th style="width: 5%">&nbsp;</th>
</tr>
</thead>
<tbody>
@@ -269,6 +270,9 @@
<td ng-class="{ 'hand': !entry.isSymbolicLink }" class="elide-table-cell" ng-click="open(entry)">{{ entry.fileName }}<span ng-show="entry.isSymbolicLink" class="text-muted" style="margin-left: 20px;">symlink to {{ entry.target }}</span></td>
<td ng-class="{ 'hand': !entry.isSymbolicLink }" class="elide-table-cell" ng-click="open(entry)">{{ entry.size | prettyByteSize }}</td>
<td ng-class="{ 'hand': !entry.isSymbolicLink }" class="elide-table-cell" ng-click="open(entry)">{{ entry.uid | prettyOwner }}</td>
<td class="text-right no-wrap" style="vertical-align: bottom">
<button class="btn btn-xs btn-link" context-menu="menuOptions" model="entry" context-menu-on="click"><i class="fas fa-bars"></i></button>
</td>
</tr>
</tbody>
</table>