1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-09 10:44:13 +01:00

Fix reversed clipboard roles in dactyl.clipboardRead.

This commit is contained in:
Kris Maglione
2011-01-15 17:46:59 -05:00
parent ac3845feb2
commit 45636c6f2e
2 changed files with 2 additions and 2 deletions

View File

@@ -347,7 +347,7 @@ var JavaScript = Module("javascript", {
compl = function (context, args, recurse) {
context.process[1] = function highlight(item, v)
template.highlight(typeof v == "xml" ? new String(v.toXMLString()) : v, true);
template.highlight(typeof v == "xml" ? new String(v.toXMLString()) : v, true, 200);
// Sort in a logical fashion for object keys:
// Numbers are sorted as numbers, rather than strings, and appear first.