Files
pathfinder/public/templates/dialog/shortcuts.html
Mark Friedrich f4d7e3c76f - New map "zoom" and map "move" options, closed #791, closed #101
- New "debug/develop" map overlays, closed #785
- Upgraded [_jsPlumb_](http://jsplumb.github.io/jsplumb/home.html) js lib `v1.7.6` → `v2.9.3`
2019-06-01 17:42:40 +02:00

23 lines
741 B
HTML

<div id="{{id}}" class="row">
{{#shortcuts}}
<div class="col-sm-6">
<h4>{{label}}</h4>
<table class="table table-condensed" style="font-size: 12px">
<tbody>
{{#events}}
<tr>
<td>{{label}}</td>
<td class="text-right">
{{#keyNames}}
<kbd>{{.}}</kbd>
{{^list}}<i class="fas fa-fw fa-plus"></i>{{/list}}
{{/keyNames}}
</td>
</tr>
{{/events}}
</tbody>
</table>
</div>
{{/shortcuts}}
</div>