blob: 1391a9c1ac236024983db504d3059f11eadb2ad9 [file] [log] [blame]
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -08001<!DOCTYPE html>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2016-present Open Networking Laboratory
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -08004 ~
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
20 -->
21
22<html>
23<head lang="en">
24 <meta charset="UTF-8">
25 <title>Practice Table Formatting</title>
26
27 <script type="text/javascript" src="../tp/angular.js"></script>
28 <script type="text/javascript" src="../tp/angular-route.js"></script>
29
30 <script type="text/javascript" src="../tp/d3.js"></script>
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080031
32 <script type="text/javascript" src="practice-table.js"></script>
Bri Prebilic Cole5c2cab92015-01-23 16:53:29 -080033 <script type="text/javascript" src="../app/fw/widget/widget.js"></script>
34 <script type="text/javascript" src="../app/fw/widget/table.js"></script>
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080035
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
48 </style>
49
50</head>
51<!-- outline for using a controller in Angular -->
52<body ng-app="practiceTable">
53 <h2>Scrolling Table Practice</h2>
Bri Prebilic Cole5c2cab92015-01-23 16:53:29 -080054 <div id="tableDiv" ng-controller="showTableCtrl as ctrl">
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080055 </div>
56
57</body>
58</html>