GUI -- show-icons.html test file is successfully linked with its module and controller

Change-Id: I4d76994949b8cbf834d355e529be4d1a29d31462
This commit is contained in:
Bri Prebilic Cole 2015-01-20 09:58:09 -08:00
parent 66f9e6e116
commit b07c279b03
2 changed files with 14 additions and 7 deletions

View File

@ -33,4 +33,4 @@
$log.log('OvShowIconsTest has been created'); $log.log('OvShowIconsTest has been created');
}]); }]);
})(); }());

View File

@ -24,12 +24,19 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Show Icons Angular</title> <title>Show Icons Angular</title>
<script src="show-icons-test.js"></script> <script type="text/javascript" src="../tp/angular.js"></script>
<script type="text/javascript" src="../tp/angular-route.js"></script>
<script src="../tp/angular.js"></script> <script type="text/javascript" src="../tp/d3.js"></script>
<script src="../tp/angular-route.js"></script>
<script src="../tp/d3.js"></script> <script type="text/javascript" src="../app/fw/util/util.js"></script>
<script type="text/javascript" src="../app/fw/util/fn.js"></script>
<script type="text/javascript" src="../app/fw/util/theme.js"></script>
<script type="text/javascript" src="../app/fw/util/keys.js"></script>
<script type="text/javascript" src="../app/fw/svg/svg.js"></script>
<script type="text/javascript" src="../app/fw/svg/glyph.js"></script>
<script type="text/javascript" src="../app/fw/svg/icon.js"></script>
<script type="text/javascript" src="show-icons-test.js"></script>
<link rel="stylesheet" href="../app/common.css"> <link rel="stylesheet" href="../app/common.css">
@ -51,8 +58,8 @@
<body class="light" ng-app="showIconsTest"> <body class="light" ng-app="showIconsTest">
<h2>Showing Icons with Icon Service Angular</h2> <h2>Showing Icons with Icon Service Angular</h2>
<div id="show-icons" ng-controller="OvShowIconsTest as ctrl"> <div id="show-icons" ng-controller="OvShowIconsTest as ctrl">
{{ctrl.message}} <!--{{message}}-->
<!--{{a}} + {{b}} = {{a+b}}--> <p>{{ctrl.a}} + {{ctrl.b}} = {{ctrl.a+ctrl.b}}</p>
</div> </div>