Skip to content

Instantly share code, notes, and snippets.

@ellismarte ellismarte/angualr.js Secret
Created Oct 5, 2016

Embed
What would you like to do?
<div ng-controler="StoresController" ng-init="vm.get()">
<a href="#/stores/new">Add Store</a>
<div ng-repeat="store in stores">
<storepanel store="store"></storepanel>
</div>
</div>
<div class="storepanel" ng-controller="StorePanelDirective">
<div class="img">
<img src="https://unsplash.com/photos/q6zV1ioOel4" alt="store img"/>
</div>
<div class="store-info">
{{store.store}} {{store.groups}} {{store.adminfn}} {{store.adminln}}
{{store.neighborhood}} {{store.phone_number}} {{store.business_type}}
{{store.country}} {{store.state}} {{store.city}}{{store.zip}}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.