mirror of
https://github.com/nasa/openmct.git
synced 2025-06-12 20:28:14 +00:00
[Identity] Remove unnecessary escapement
JSLint does not like unnecessary use of unicode escapement.
This commit is contained in:
@ -46,7 +46,7 @@ define(
|
|||||||
}
|
}
|
||||||
|
|
||||||
IdentityIndicator.prototype.getGlyph = function () {
|
IdentityIndicator.prototype.getGlyph = function () {
|
||||||
return this.text && "\u0050";
|
return this.text && "P";
|
||||||
};
|
};
|
||||||
IdentityIndicator.prototype.getGlyphClass = function () {
|
IdentityIndicator.prototype.getGlyphClass = function () {
|
||||||
return undefined;
|
return undefined;
|
||||||
|
Reference in New Issue
Block a user