Skip to content

Commit

Permalink
fix for store action bar
Browse files Browse the repository at this point in the history
  • Loading branch information
thusithak committed Jun 5, 2015
1 parent c298e01 commit 34cb8b3
Showing 1 changed file with 15 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{{#if actionBar}}
<div class="wr-action-btn-bar">
<ul class="nav navbar-nav">
{{#each actionBar.actions}}
<li>
<a href='{{url ""}}{{this.url}}' id="{{this.id}}">
<li class="action-wrapper">
<div class="action-img-icon">{{this.iconClass}}</div>
<label class="action-title">{{this.name}}<label>
</li>
</a>
</li>
{{/each}}
</ul>
</div>
<div class="wr-action-btn-bar">
<ul class="nav navbar-nav">
{{#each actionBar.actions}}
<li>
<a href='{{url ""}}{{this.url}}' id="{{this.id}}">
<li class="action-wrapper">
<!--<div class="action-img-icon"></div>-->
<i class="fa {{this.iconClass}} fa-2x"></i>&nbsp;&nbsp;
<span class="action-title pull-right">{{this.name}}<span>
</li>
</a>
</li>
{{/each}}
</ul>
</div>
{{/if}}

0 comments on commit 34cb8b3

Please sign in to comment.