[Frontend] Removing glyph definitions; updating tests

Fixes #1047
Search and removal of "glyph" definitions in bundle
and other JS files; updating tests accordingly;
This commit is contained in:
Charles Hacskaylo
2016-07-25 10:20:33 -07:00
parent 574b8bd5c1
commit 650fbcc921
34 changed files with 22 additions and 102 deletions

View File

@ -46,7 +46,7 @@ define(
);
testStructure = {
name: "A Test",
glyph: "T",
cssclass: "icon-T",
description: "Test description",
control: "dialog-button",
title: "Test title",
@ -83,7 +83,7 @@ define(
mockScope.$watch.mostRecentCall.args[1](testStructure);
buttonStructure = controller.getButtonStructure();
expect(buttonStructure.glyph).toEqual(testStructure.glyph);
expect(buttonStructure.cssclass).toEqual(testStructure.cssclass);
expect(buttonStructure.description).toEqual(testStructure.description);
expect(buttonStructure.name).toEqual(testStructure.name);
expect(buttonStructure.click).toEqual(jasmine.any(Function));