Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <ion-grid *ngFor="let item of menuData; let i = index; " ng-init="getAllItemToGrid()">
  2. <img src="{{'assets/Products/'+menuData[i].image}}" ng-click="onLogin()" width="100%">
  3. <a class="item item-icon-right assertive" style="border-width: 0px; border-style: none;">
  4. <p ng-click="" style="font-size: 12px;text-align:left; padding-left: 10px">
  5. {{menuData[i].name}}<br/>
  6. <span style="font-weight: bold;color: black;">&#8364; {{i+1 < menuData.length}}</span>
  7. </p>
  8. <button ion-button (click)="addToCart(item)" type="submit" color="danger" icon-left block style="width:150px; height: 25px;">
  9. <ion-icon ios="ios-cart" style="position: absolute;left:5%;"></ion-icon>
  10. <p> &emsp; ADD TO CART</p>
  11. </button>
  12. </a>
  13. </ion-col>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement