-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (55 loc) · 2.09 KB
/
index.html
File metadata and controls
59 lines (55 loc) · 2.09 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head lang="en">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.css">
<meta charset="UTF-8">
<title></title>
<!--<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>-->
<script src="bower_components/angular/angular.js"></script>
<!--<script src="bower_components/angular-bind-polymer/angular_bind_polymer.js"></script>-->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="http://js.arcgis.com/3.12/"></script>
<script>
var pathRx = new RegExp(/\/[^\/]+$/);
var locationPath = location.href.replace(pathRx,"")+"/";
require({
async:true,
alias: [['text', 'dojo/text']],
packages: [
{
name: "controller",
location: locationPath+"scripts/controller"
}, {
name: "service",
location: locationPath+"scripts/service"
}, {
name: "scripts",
location: locationPath+"scripts"
}, {
name: "template",
location: locationPath+"scripts/template"
}
]
});
</script>
<script src="scripts/scriptLoader.js"></script>
<script src="scripts/app.js"></script>
<!--<link rel="import" href="elements/test-element.html">-->
</head>
<body>
<div ng-controller="IndexCtrl">
<!--from Angular control:<br>-->
<!--<input type="text" ng-model="message">-->
<!--<br>-->
<!--from Polymer Attribute:<br>-->
<!--<test-element bind-polymer message={{message}} panels={{panels}}></test-element>-->
<!--</div>-->
<!--<toolbar-element></toolbar-element>-->
{{vm.showMessage()}}
<div class="layoutContainer">
<toolbar></toolbar>
<panel-container ng-show="getPanels().length>0"></panel-container>
</div>
</body>
</html>