Files
ionic-framework/js/ext/angular/test/tabs-repeat.html
Andy Joslin 55089042d8 chore(build): documentation generation
Main changes:

* Use gulpfile now (build was getting way too disorganized with custom
tasks; gulpfiles are much easier to build clean custom tasks with than
Grunt.
* View README#Development for updated commands
* Docs written for ionContent, ionHeaderBar, ionInfiniteScroll.
* Docs are pushed to ajoslin's fork of ionic-site until they reach a
* point where they can be published.

**TODO, In Order of Priority**

1. Finish writing source-documentation for all existing components
2. Add multiple versions of docs (one per release & nightly, latest
 stable release docs being shown by default)
3. Add examples generation
4. Add searchbar to docs
2014-03-07 13:36:36 -07:00

43 lines
1.1 KiB
HTML

<html ng-app="ionic">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Inline Tabs</title>
<link href="../../../../dist/css/ionic.css" rel="stylesheet">
<script src="../../../../dist/js/ionic.bundle.js"></script>
</head>
<body ng-init="pages=[
{'id':'first',
'icon':'ion-link'
},
{'id':'second',
'icon':'icon ion-link'
},
{'id':'third',
'icon':'ion-link'
}
]">
<ion-tabs tabs-style="tabs-top tabs-positive tabs-icon-top">
<ion-tab ng-repeat="p in pages" title="{{p.id}}" icon="{{p.icon}}">
<header class="bar bar-positive bar-header"></header>
<ion-content has-header="true" has-subheader="true">
<p></p>
<b>{{p.id}}</b>
<p>...</p>
<p>...</p>
<p>...</p>
<p>...</p>
<p>...</p>
</ion-content>
</ion-tab>
</ion-tabs>
</body>
</html>