Skip to content

Instantly share code, notes, and snippets.

@emaxerrno
Created February 2, 2013 20:03
Show Gist options
  • Select an option

  • Save emaxerrno/4699034 to your computer and use it in GitHub Desktop.

Select an option

Save emaxerrno/4699034 to your computer and use it in GitHub Desktop.
<div class="filterMenu">
<div class="toggleButton">
<a ng-click="toggle()"
ng-show="showList()"
href="#"><img src="/images/list-view-active.png"></a>
<a ng-click="toggle()"
ng-show="showGrid()"
href="#"><img src="/images/list-view-inactive.png"></a>
</div>
</div>
<div ng-show="gridEnabled">
<div ng-repeat="item in items" class="shoppingProductList">
<div class="shoppingListRow">
<div id="" class="detailedListHolder">
<div class="shoppingListViewName"><label>{{item.title}}: {{ item.price | currency}}</label></div>
<div class="shoppingListViewTitle">
<div class="shoppingListViewItem shoppingP"><label>item:{{item.item_id}}</label></div>
<div class="shoppingListViewItem"><label>section:{{item.section}}</label></div>
<div class="shoppingListViewItem"><label>category:{{item.category}}</label></div>
<div class="shoppingListViewItem"><label>unit:{{item.unit}}</label></div>
</div>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment