Created
April 10, 2014 08:37
-
-
Save anonymous/10357101 to your computer and use it in GitHub Desktop.
Carousel-example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="carousel" data-role='items-list' | |
rn-carousel | |
rn-carousel-index="data.selectedIndex" | |
rn-carousel-watch | |
rn-carousel-indicator> | |
<li ng-repeat="card in data.items" ng-class="{true:'insuranceCard', false:'insuranceCard disabled'}[card.isValid]"> | |
<table> | |
<tr> | |
<td colspan="2"> | |
<h3> | |
{{card.insuranceType}} | |
</h3> | |
</td> | |
</tr> | |
<!-- more stuff.. --> | |
</table> | |
</li> | |
</ul> | |
<button ui-sref="addInsuranceCard" class="full-width">Legg til kort</button> | |
<button class="full-width remove" ng-if="selectedItem!==null" ng-click="removeInsuranceCard(selectedItem);">Fjern kort</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment