diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-10 16:57:47 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-10 16:57:47 -0500 |
commit | 893ed79637dec5369e21e092e7e0136f9bd3440f (patch) | |
tree | 5c32df0d25d6643899591301dd65048bd20d42ee /common/modules/highlight.jsm | |
parent | 2da26d95e630b59acc9af54fcf7a96e1be900500 (diff) | |
download | pentadactyl-893ed79637dec5369e21e092e7e0136f9bd3440f.tar.gz |
Fix deleting files after viewing them from source links in :list*.
Diffstat (limited to 'common/modules/highlight.jsm')
-rw-r--r-- | common/modules/highlight.jsm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/modules/highlight.jsm b/common/modules/highlight.jsm index 67545814..00ee36cc 100644 --- a/common/modules/highlight.jsm +++ b/common/modules/highlight.jsm @@ -4,12 +4,12 @@ // given in the LICENSE.txt file included with this file. "use strict"; -Components.utils.import("resource://dactyl/base.jsm"); +Components.utils.import("resource://dactyl/bootstrap.jsm"); defineModule("highlight", { exports: ["Highlight", "Highlights", "highlight"], require: ["services", "styles", "util"], use: ["template"] -}); +}, this); var Highlight = Struct("class", "selector", "sites", "defaultExtends", "defaultValue", |