-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex2.html
More file actions
19 lines (18 loc) · 775 Bytes
/
index2.html
File metadata and controls
19 lines (18 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html ng-app="myApp">
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js"></script>
<script type="text/javascript" src="angular.js"></script>
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/themes/redmond/jquery-ui.css" rel="stylesheet" />
</head>
<body ng-controller="mainCtrl">
<div class="demo">
<div slider id="slider1" max="100" min="20"></div>
<input type="text" value="{{hello}}"/>
<div slider id="slider2" max="100" min="20"></div>
<input type="text" value="{{goodbye}}"/>
</div>
</body>
<script src="controller2.js"></script>
</html>