summaryrefslogtreecommitdiff
path: root/common/content/bookmarks.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2010-11-09 16:47:01 -0500
committerKris Maglione <maglione.k@gmail.com>2010-11-09 16:47:01 -0500
commit75b5522073eda617ed4933ea7bd983e76a2b7a3e (patch)
treee763f0461d3a31f1124a9b132a823c46c509f53c /common/content/bookmarks.js
parentce679ddae05700b546db0a5d63032df6cde506b3 (diff)
downloadpentadactyl-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.js2
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;