diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-02-19 00:24:07 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-02-19 00:24:07 -0500 |
commit | 34c0c5a10e40eb0e4e337216be77c7d60d1ebbad (patch) | |
tree | 248ee7288d813e771b8ffe966d0fc24189d0957b /common/content/bookmarks.js | |
parent | cb0a07ddd18f1f0f2a807736d4809b301f10edf8 (diff) | |
download | pentadactyl-34c0c5a10e40eb0e4e337216be77c7d60d1ebbad.tar.gz |
Small fix for Minefield.
Diffstat (limited to 'common/content/bookmarks.js')
-rw-r--r-- | common/content/bookmarks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/bookmarks.js b/common/content/bookmarks.js index b0443396..cb411ba9 100644 --- a/common/content/bookmarks.js +++ b/common/content/bookmarks.js @@ -661,7 +661,7 @@ var Bookmarks = Module("bookmarks", { ctxt.compare = CompletionContext.Sort.unsorted; ctxt.filterFunc = null; - let words = ctxt.filter.split(/\s+/g); + let words = ctxt.filter.toLowerCase().split(/\s+/g); ctxt.completions = ctxt.completions.filter(function (i) words.every(function (w) i.toLowerCase().indexOf(w) >= 0)); ctxt.hasItems = ctxt.completions.length; |