FIX: unmatched element prevents HTMLbars from compiling

This commit is contained in:
Erick Guan
2015-04-03 18:40:17 +08:00
parent 0f9a22b572
commit 2e7c5e5f35
7 changed files with 14 additions and 12 deletions

View File

@@ -33,13 +33,15 @@
<li class='toggle-mobile'>
<a {{bind-attr class="view.mobile:active"}} {{action "toggleMobile" target="view"}}>{{fa-icon "mobile"}}</a>
</li>
<li class='toggle-maximize'><a {{action "toggleMaximize" target="view"}}>
{{#if view.maximized}}
{{fa-icon "compress"}}
{{else}}
{{fa-icon "expand"}}
{{/if}}
</a>
<li class='toggle-maximize'>
<a {{action "toggleMaximize" target="view"}}>
{{#if view.maximized}}
{{fa-icon "compress"}}
{{else}}
{{fa-icon "expand"}}
{{/if}}
</a>
</li>
</ul>
</div>