1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 11:54:13 +01:00

Remove partial URL encoding from quick search completions. Ref 440caa218bda.

This commit is contained in:
Kris Maglione
2011-08-23 19:10:13 -04:00
parent a1743165d4
commit cf29db91af
2 changed files with 2 additions and 1 deletions

View File

@@ -627,6 +627,7 @@ var Bookmarks = Module("bookmarks", {
context.fork("keyword/" + keyword, keyword.length + space.length, null, function (context) {
context.format = history.format;
context.title = [/*L*/keyword + " Quick Search"];
context.keys = { text: "url", description: "title", icon: "icon" };
// context.background = true;
context.compare = CompletionContext.Sort.unsorted;
context.generate = function () {

View File

@@ -258,7 +258,7 @@ var Template = Module("Template", {
// Fixes some strange stack rewinds on NS_ERROR_OUT_OF_MEMORY
// exceptions that we can't catch.
stringify: function (arg) {
stringify: function stringify(arg) {
if (!callable(arg))
return String(arg);