From 97071fc72c31ee7703377601f15fc8bc8b99031d Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Tue, 1 Sep 2015 11:01:08 -0700 Subject: [PATCH] [Identity] Remove unnecessary escapement JSLint does not like unnecessary use of unicode escapement. --- platform/identity/src/IdentityIndicator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/identity/src/IdentityIndicator.js b/platform/identity/src/IdentityIndicator.js index a39ff54849..bee8648f26 100644 --- a/platform/identity/src/IdentityIndicator.js +++ b/platform/identity/src/IdentityIndicator.js @@ -46,7 +46,7 @@ define( } IdentityIndicator.prototype.getGlyph = function () { - return this.text && "\u0050"; + return this.text && "P"; }; IdentityIndicator.prototype.getGlyphClass = function () { return undefined;