-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 1.58 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<script src="/public/lib/jquery/dist/jquery.js"></script>
<script src="/public/lib/angular/angular.js"></script>
<script src="/public/lib/bootstrap-switch/dist/js/bootstrap-switch.js"></script>
<script src="/public/lib/bootstrap/dist/js/bootstrap.js"></script>
<script src="/public/lib/angular-bootstrap-switch/dist/angular-bootstrap-switch.js"></script>
<link type="text/css" rel="stylesheet" href="public/lib/bootstrap/dist/css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="public/lib/bootstrap-switch/dist/css/bootstrap3/bootstrap-switch.min.css" />
<!-- <link rel="stylesheet" href="../bower_components/bootstrap-switch/dist/css/bootstrap2/bootstrap-switch.css"> -->
<script src="code.js"></script>
</head>
<body ng-app="myApp">
<div class="container" ng-controller="bootswitch-controller">
<div class="jumbotron">
Example:
<input
bs-switch
type="checkbox"
ng-model="selectionCriteria"
switch-on-text="Simple"
switch-off-text="Advanced"
switch-on-color="success"
switch-off-color="info"
switch-size="100">
</div>
</div><!--
// <script src="../bower_components/jquery/dist/jquery.js"></script>
// <script src="../bower_components/angular/angular.js"></script>
// <script src="../bower_components/bootstrap-switch/dist/js/bootstrap-switch.js"></script>
// <script src="../common/module.js"></script>
// <script src="../src/directives/bsSwitch.js"></script>
// <script src="scripts/app.js"></script>
// <sc ript src="scripts/controllers/main.js"></script> -->
</body>
</html>