-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 843 Bytes
/
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
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<!-- CSS -->
<!-- JS -->
<script src="angular-1.3.7/angular.js"></script>
<script src='init.core.module.inc.js'></script>
<script src="init.controllers.inc.js"></script>
<script src="app.js"></script>
<!-- CSS -->
</head>
<body>
<div ng-app="myApp" ng-controller="WidgetController">
<div ng-controller="FirstCtrl">
<input type="text" ng-model="data.message">
<h1>{{ data.message }}</h1>
<firstitem></firstitem>
</div>
<div ng-controller="SecondCtrl">
<input type="text" ng-model="data.message">
<h1>{{ data.message }}</h1>
<seconditem></seconditem>
</div>
</div>
<div ng-controller="ThirdController">
<input type="text" ng-model="data.message">
<h1>{{data.message}}</h1>
<thirditem></thirditem>
</div>
</body>
</html>