piskel/templates/cheatsheet.html

28 lines
1.1 KiB
HTML
Raw Normal View History

<div id="cheatsheet-wrapper" style="display:none">
<div class="cheatsheet-container">
<div class="cheatsheet-section">
2015-09-14 11:06:46 +03:00
<h3 class="cheatsheet-title">Tool shortcuts</h3>
<ul class="cheatsheet-tool-shortcuts"></ul>
</div>
<div class="cheatsheet-section">
2015-09-14 11:06:46 +03:00
<h3 class="cheatsheet-title">Misc shortcuts</h3>
<ul class="cheatsheet-misc-shortcuts"></ul>
</div>
2014-03-30 05:12:56 +04:00
<div class="cheatsheet-section">
2015-09-14 11:06:46 +03:00
<h3 class="cheatsheet-title">Selection shortcuts</h3>
2014-03-30 05:12:56 +04:00
<ul class="cheatsheet-selection-shortcuts"></ul>
2015-09-14 11:06:46 +03:00
<h3 class="cheatsheet-title">Color shortcuts</h3>
<ul class="cheatsheet-colors-shortcuts"></ul>
2014-03-30 05:12:56 +04:00
</div>
</div>
</div>
2015-04-27 01:44:43 +03:00
<span
class="cheatsheet-link"
rel="tooltip" data-placement="right" title="Keyboard shortcuts">&nbsp;</span>
<script type="text/template" id="cheatsheet-shortcut-template">
<li class="cheatsheet-shortcut">
<div class="cheatsheet-icon {{shortcutIcon}}"></div>
<span class="cheatsheet-key">{{shortcutKey}}</span>
<span class="cheatsheet-description">{{shortcutDescription}}</span>
</li>
</script>