1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-18 12:25:46 +01:00

Make Bookmark objects live writeable.

This commit is contained in:
Kris Maglione
2010-12-10 01:38:39 -05:00
parent 38c2d07ef1
commit 36205c6c0e
7 changed files with 57 additions and 26 deletions

View File

@@ -527,9 +527,8 @@ const CompletionContext = Class("CompletionContext", {
// A simple binary search to find the longest substring
// of the given string which also matches the current
// item's text.
var m, len = substring.length;
var n = substring.length;
var i = 0;
let len = substring.length;
let i = 0, m, n = len;
while (n) {
m = Math.floor(n / 2);
let keep = compare(fixCase(item.text), substring.substring(0, i + m));