[Identity] Remove unnecessary escapement

JSLint does not like unnecessary use of unicode escapement.
This commit is contained in:
Victor Woeltjen 2015-09-01 11:01:08 -07:00
parent b39753d0a6
commit 97071fc72c

View File

@ -46,7 +46,7 @@ define(
}
IdentityIndicator.prototype.getGlyph = function () {
return this.text && "\u0050";
return this.text && "P";
};
IdentityIndicator.prototype.getGlyphClass = function () {
return undefined;