-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.27 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
<!DOCTYPE html>
<html ng-app="single-page">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
<script src="/app/js/angular-route.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="/app/js/app.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css?parameter=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Quote for Quote</title>
</head>
<body ng-controller="mainController as dictionary">
<div id="top_panel" ng-init="demo = 'Hi, I am mr two way binding';">
<div class="left">
<span><strong>Demo: </strong>{{demo}}</span>
</div>
<div class="right">
<input class="form-control" ng-model="demo" placeholder="2 way binding??? huh what?" type="text" />
</div>
</div>
<div ng-view></div>
</body>
</html>