Advertisement
Guest User

flipcard

a guest
Nov 1st, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <flipcard flipped="{{isInEitherArray(i, openIndices, matchedIndices)}}" height="128px" width="128px" on-click="{{onCellClick}}">
  2.   <div front class="tile"></div>
  3.   <div back class="tile {{isInEitherArray(i, openIndices, matchedIndices) ? 'open' : ''}}" on-click="{{onCellClick}}">
  4.     <template if="{{cell.tile.imageHref}}">
  5.       <img class="tile-icon" src="{{cell.tile.imageHref}}">
  6.     </template>
  7.     <span>{{cell.tile.title}}</span>
  8.   </div>
  9. </flipcard>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement