Skip to content

Commit

Permalink
Merge pull request #615 from thusithak/release-2.0.0
Browse files Browse the repository at this point in the history
fix for store action bar - adding icons and bar layout fix
  • Loading branch information
dhanuka84 committed Jun 5, 2015
2 parents d17ef1a + 34cb8b3 commit 91982da
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 91982da

Please sign in to comment.