diff options
author | Kris Maglione <maglione.k@gmail.com> | 2010-11-09 16:47:01 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2010-11-09 16:47:01 -0500 |
commit | 75b5522073eda617ed4933ea7bd983e76a2b7a3e (patch) | |
tree | e763f0461d3a31f1124a9b132a823c46c509f53c /common/content/bookmarks.js | |
parent | ce679ddae05700b546db0a5d63032df6cde506b3 (diff) | |
download | pentadactyl-75b5522073eda617ed4933ea7bd983e76a2b7a3e.tar.gz |
Don't use a popuppanel for the visual bell if possible.
Update issue #125
This should no longer be a problem after tonight's nightly on
Firefox 4.
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 aca597d3..f1eda8ef 100644 --- a/common/content/bookmarks.js +++ b/common/content/bookmarks.js @@ -38,7 +38,7 @@ const Bookmarks = Module("bookmarks", { try { let uri = util.createURI(url); - if (!force && bookmarks.isBookmarked(uri.spec)) + if (!force && this.isBookmarked(uri.spec)) for (let bmark in bookmarkcache) if (bmark.url == uri.spec) { var id = bmark.id; |