GUI -- Added new icons to glyphs library.
- Edited glyph-spec and icon-spec to test the changes.

Change-Id: I23472b7f6699a46da1728c49a9d72f826244c739
diff --git a/web/gui/src/main/webapp/app/fw/svg/icon.js b/web/gui/src/main/webapp/app/fw/svg/icon.js
index deb1522..aade3a7 100644
--- a/web/gui/src/main/webapp/app/fw/svg/icon.js
+++ b/web/gui/src/main/webapp/app/fw/svg/icon.js
@@ -18,6 +18,7 @@
  ONOS GUI -- SVG -- Icon Service
 
  @author Simon Hunt
+ @author Bri Prebilic Cole
  */
 (function () {
     'use strict';
@@ -31,10 +32,8 @@
     // maps icon id to the glyph id it uses.
     // note: icon id maps to a CSS class for styling that icon
     var glyphMapping = {
-            deviceOnline: 'crown',
-            deviceOffline: 'chain'
-            //deviceOnline: 'checkMark',
-            //deviceOffline: 'xMark'
+            deviceOnline: 'checkMark',
+            deviceOffline: 'xMark'
         };
 
     function ensureIconLibDefs() {