-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 753 Bytes
/
index.html
File metadata and controls
25 lines (23 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html ng-app="kaari">
<head>
<script src="lib/angular.js"></script>
<script src="lib/ui-bootstrap-tpls-0.3.0.js"></script>
<script src="navigation.js"></script>
<link href="lib/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div ng-controller="TabsCtrl">
<tabs>
<pane heading="Static title">Static content</pane>
<pane ng-repeat="pane in panes" heading="{{pane.title}}" active="pane.active">{{pane.content}}</pane>
</tabs>
<div class="row-fluid">
<button class="btn" ng-click="panes[0].active = true">Select second tab</button>
<button class="btn" ng-click="panes[1].active = true">Select third tab</button>
</div>
</div>
</div>
</body>
</html>