diff --git a/common/content/dactyl.js b/common/content/dactyl.js index bc614b74..ba72156d 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -249,7 +249,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { transferable.addDataFlavor("text/unicode"); let source = clipboard[getClipboard || !clipboard.supportsSelectionClipboard() ? - "kSelectionClipboard" : "kGlobalClipboard"]; + "kGlobalClipboard" : "kSelectionClipboard"]; clipboard.getData(transferable, source); let str = {}, len = {}; diff --git a/common/modules/javascript.jsm b/common/modules/javascript.jsm index eaeb1402..65d0e1b2 100644 --- a/common/modules/javascript.jsm +++ b/common/modules/javascript.jsm @@ -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.