Added additional test cases, and some tidying

This commit is contained in:
Henry
2015-10-23 11:48:25 -07:00
parent e3ef68bc6f
commit 78b528b4a5
4 changed files with 87 additions and 24 deletions

View File

@ -26,25 +26,10 @@ define(
function () {
"use strict";
function NotificationIndicator() {
}
function NotificationIndicator() {}
NotificationIndicator.template = 'notificationIndicatorTemplate';
NotificationIndicator.prototype.getGlyph = function () {
return "A";
};
NotificationIndicator.prototype.getGlyphClass = function () {
return 'caution';
};
NotificationIndicator.prototype.getText = function () {
return "Notifications";
};
NotificationIndicator.prototype.getDescription = function () {
return "Notifications";
};
return NotificationIndicator;
}
);