test updates

This commit is contained in:
Adam Bradley
2014-01-20 20:43:12 -06:00
parent df62854a2b
commit 57fe565b03
10 changed files with 61 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
<html>
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<title>Buttons</title>
@@ -17,6 +17,16 @@
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 ); /* IE6-9 */
}
</style>
<script src="../dist/js/ionic.js"></script>
<script src="../dist/js/angular/angular.js"></script>
<script src="../dist/js/angular/angular-sanitize.js"></script>
<script src="../dist/js/angular/angular-animate.js"></script>
<script src="../dist/js/angular/angular-touch.js"></script>
<script src="../dist/js/angular-ui/angular-ui-router.js"></script>
<script src="../dist/js/ionic-angular.js"></script>
<script>
angular.module('ionicApp', ['ionic'])
</script>
</head>
<body>
@@ -24,7 +34,7 @@
<h1 class="title">Buttons</h1>
</header>
<main class="content has-header overflow-scroll">
<content class="has-header">
<div class="padding">
@@ -137,8 +147,8 @@
<h3>button.button.button-small</h3>
<p>
<button class="button button-small"><i class="icon ion-home"></i> Default</button>
<button class="button button-small button-light"><i class="icon ion-home"></i> .button-light</button>
<button class="button button-small button-stable"><i class="icon ion-home"></i> .button-stable</button>
<button class="button button-small button-light"><i class="icon ion-home"></i></button>
<button class="button button-small button-stable">.button-stable</button>
<button class="button button-small button-balanced"><i class="icon ion-home"></i> .button-balanced</button>
<button class="button button-small button-positive"><i class="icon ion-home"></i></button>
<button class="button button-small button-calm">.button-calm</button>
@@ -439,7 +449,7 @@
<hr>
</main>
</content>
</body>
</html>