summaryrefslogtreecommitdiff
path: root/common/content/browser.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-08-15 00:03:57 -0400
committerKris Maglione <maglione.k@gmail.com>2011-08-15 00:03:57 -0400
commit07d6099a953c1367efdc57eb141f5a973e843aec (patch)
treee2c8ac5735659e6c90b753644fe98f2ae0f2e50e /common/content/browser.js
parent681af3e618eed5d24c581c3ea5dee1907e404e7d (diff)
downloadpentadactyl-07d6099a953c1367efdc57eb141f5a973e843aec.tar.gz
Move overlay magic from util to overlay module.
Diffstat (limited to 'common/content/browser.js')
-rw-r--r--common/content/browser.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/content/browser.js b/common/content/browser.js
index 38ffda2c..ff3fbc1a 100644
--- a/common/content/browser.js
+++ b/common/content/browser.js
@@ -13,8 +13,8 @@
*/
var Browser = Module("browser", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
init: function init() {
- this.cleanupProgressListener = util.overlayObject(window.XULBrowserWindow,
- this.progressListener);
+ this.cleanupProgressListener = overlay.overlayObject(window.XULBrowserWindow,
+ this.progressListener);
util.addObserver(this);
},