Skip to content

Commit d7bd4a9

Browse files
committed
Removed protocol from external resources. This will allow the browser to get the right version of the resources based on what its current protocol is. Also moved `script` tags to the bottom of the body.
1 parent c023eee commit d7bd4a9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

index.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<html id="top" lang="en" ng-app="demo">
33
<head>
44
<title>AngularUI for AngularJS</title>
5-
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.1/angular.js"></script>
6-
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css" rel="stylesheet">
5+
6+
<link href="logo/UI_Shield.png" rel="shortcut icon">
7+
8+
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css" rel="stylesheet">
79
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
8-
<script src="js/app.js"></script>
910
<link href="css/app.css" rel="stylesheet">
10-
<link href="logo/UI_Shield.png" rel="shortcut icon">
1111
</head>
1212

1313
<body ng-controller="DemoCtrl">
@@ -139,5 +139,8 @@ <h1 class="page-header">IDE Plugins <small>AngularJS support in your favorite te
139139
</section>
140140
</div>
141141
</div>
142+
143+
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.1/angular.js"></script>
144+
<script src="js/app.js"></script>
142145
</body>
143-
</html>
146+
</html>

0 commit comments

Comments
 (0)