Forgot to add menuItem.html
This commit is contained in:
parent
1003b89965
commit
3b82bb37b3
1 changed files with 17 additions and 0 deletions
17
templates/menuItem.html
Normal file
17
templates/menuItem.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<li
|
||||
{{#command}}
|
||||
command="{{command}}"
|
||||
argument="{{argument}}"
|
||||
{{/command}}
|
||||
class="{{#hasChildren}}
|
||||
{{#isRoot}}top{{/isRoot}}
|
||||
{{^isRoot}}parent{{/isRoot}}
|
||||
{{/hasChildren}}
|
||||
{{#retainFocus}}no-refocus{{/retainFocus}}"
|
||||
>{{label}}
|
||||
{{#shortcut}}
|
||||
<span class="shortcut">{{shortcut}}</span>
|
||||
{{/shortcut}}
|
||||
{{#hasChildren}}
|
||||
<ul class="menu"></ul>
|
||||
{{/hasChildren}}</li>
|
Loading…
Reference in a new issue