Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <ion-view view-title="Photos">
  2. <ion-content>
  3. <button class="button button-full button-assertive" ng-click="logout()">Logout</button>
  4.  
  5. <ion-refresher on-refresh="doRefresh()"></ion-refresher>
  6.  
  7. <div class="item item-divider">Your Photos</div>
  8.  
  9. <div class="flex-container">
  10. <div class="flex-item" ng-repeat="data in photos">
  11. <img ng-src="{{data.source}}" width="100"/>
  12. </div>
  13. </div>
  14. </ion-content>
  15. </ion-view>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement