1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 07:42:26 +01:00

Remove straggling String#quote usage.

String#quote is no more.

Fixes :mkvimruntime.
This commit is contained in:
Doug Kearns
2015-05-14 03:02:30 +10:00
parent a9a97704f3
commit 07ce319763
4 changed files with 6 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ var Map = Class("Map", {
names: Class.Memoize(function () this._keys.map(k => DOM.Event.canonicalKeys(k))),
get toStringParams() [this.modes.map(m => m.name),
this.names.map(String.quote)],
this.names.map(JSON.stringify)],
get identifier() [this.modes[0].name, this.hive.prefix + this.names[0]].join("."),