[Frontend] Refactoring glyphs to classes

Fixes #1047
In-progress; indicators, notifications, actions,
tests
This commit is contained in:
Charles Hacskaylo
2016-06-28 14:47:52 -07:00
parent 53ed0bfb22
commit 8bb8db69e6
29 changed files with 72 additions and 46 deletions

View File

@ -54,6 +54,7 @@ define(
[
"getKey",
"getGlyph",
"getCssClass",
"getName",
"getDescription",
"getProperties",
@ -75,6 +76,7 @@ define(
mockType.getKey.andReturn("test");
mockType.getGlyph.andReturn("T");
mockType.getCssClass.andReturn("icon-telemetry");
mockType.getDescription.andReturn("a test type");
mockType.getName.andReturn("Test");
mockType.getInitialModel.andReturn(testModel);