blob: b932158c3088c27f1813a699539a268b79f5bf3b [file] [log] [blame]
Bri Prebilic Cole17a18b22015-01-19 17:15:59 -08001<!DOCTYPE html>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17
18<!--
19 ONOS -- Displaying icons with Angular test page
Bri Prebilic Cole17a18b22015-01-19 17:15:59 -080020 -->
21
22<html>
23<head lang="en">
24 <meta charset="UTF-8">
25 <title>Show Icons Angular</title>
26
27 <script src="show-icons-test.js"></script>
28
29 <script src="../tp/angular.js"></script>
30 <script src="../tp/angular-route.js"></script>
31
32 <script src="../tp/d3.js"></script>
33
34 <link rel="stylesheet" href="../app/common.css">
35
36 <style>
37 html,
38 body {
39 background-color: #ddf;
40 font-family: Arial, Helvetica, sans-serif;
41 font-size: 9pt;
42 }
43
44 h2 {
45 color: darkred;
46 }
47 </style>
48
49</head>
50<!-- outline for using a controller in Angular -->
51<body class="light" ng-app="showIconsTest">
52 <h2>Showing Icons with Icon Service Angular</h2>
53 <div id="show-icons" ng-controller="OvShowIconsTest as ctrl">
54 {{ctrl.message}}
55 <!--{{a}} + {{b}} = {{a+b}}-->
56 </div>
57
58
59
60</body>
61</html>