diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-06-25 21:02:06 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-06-28 16:03:16 +1000 |
commit | ddfa294e1bdb1898cdaeb33abd6aa9d7d2970dcc (patch) | |
tree | 0ce36908e3839a4c69de447a7784c48f63ce4f11 /muttator | |
parent | 90e3dd345f1f2d6f9a8d820df6bb29f699f016e4 (diff) | |
download | pentadactyl-ddfa294e1bdb1898cdaeb33abd6aa9d7d2970dcc.tar.gz |
Remove config.mainWindowID tests from common/*.
Diffstat (limited to 'muttator')
-rw-r--r-- | muttator/content/config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muttator/content/config.js b/muttator/content/config.js index dd6b295d..1ddfbc31 100644 --- a/muttator/content/config.js +++ b/muttator/content/config.js @@ -30,6 +30,7 @@ const config = { //{{{ /*** required options, no checks done if they really exist, so be careful ***/ name: "Muttator", hostApplication: "Thunderbird", // TODO: can this be found out otherwise? gBrandBundle.getString("brandShortName"); + get mainWindowID() this.isComposeWindow ? "msgcomposeWindow" : "messengerWindow", /*** optional options, there are checked for existence and a fallback provided ***/ features: ["hints", "mail", "marks", "addressbook", "tabs"], @@ -50,7 +51,6 @@ const config = { //{{{ get mailModes() [modes.NORMAL], // focusContent() focuses this widget get mainWidget() this.isComposeWindow ? document.getElementById("content-frame") : GetThreadTree(), - get mainWindowID() this.isComposeWindow ? "msgcomposeWindow" : "messengerWindow", get visualbellWindow() document.getElementById(this.mainWindowID), styleableChrome: "chrome://messenger/content/messenger.xul,chrome://messenger/content/messengercompose/messengercompose.xul", |