diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-29 13:38:04 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:51:40 +0200 |
commit | 5371dac76e4cfed85033ae0cf161d7ad2dbfb83f (patch) | |
tree | 9126616ec4ba70124871299891769e4d6133a5a5 | |
parent | 272ab432ddc4562237c7235f8e0ab8a11bad3d3d (diff) | |
download | bugzilla-triage-5371dac76e4cfed85033ae0cf161d7ad2dbfb83f.tar.gz |
Incompatibility bits.
* global onMessage is not chic anymore, replacing with self.on handler.
* filterByRegexp returns string and could return null. Make sure we can
survive it.
-rw-r--r-- | data/lib/bzpage.js | 4 | ||||
-rw-r--r-- | data/lib/otherButtons.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/data/lib/bzpage.js b/data/lib/bzpage.js index 02c8e3c..76dd1a7 100644 --- a/data/lib/bzpage.js +++ b/data/lib/bzpage.js @@ -21,7 +21,7 @@ var equivalentComponents = null; /** * central handler processing messages from the main script. */ -onMessage = function onMessage(msg) { +self.on('message', function onMessage(msg) { console.log("onMessage - incoming : msg.cmd = " + msg.cmd); switch (msg.cmd) { case "ReloadThePage": @@ -50,7 +50,7 @@ onMessage = function onMessage(msg) { console.error("Error: unknown RPC call " + msg.toSource()); } } -}; +}); /** * @param cmd diff --git a/data/lib/otherButtons.js b/data/lib/otherButtons.js index ab8ec35..0e7b408 100644 --- a/data/lib/otherButtons.js +++ b/data/lib/otherButtons.js @@ -78,7 +78,7 @@ function addingEmbelishments(list) { var maintCCAddr = ""; if (constantData.CCmaintainer) { maintCCAddr = filterByRegexp(constantData.CCmaintainer, - getComponent())[0]; // filterByRegexp returns array, not string + getComponent()); // filterByRegexp returns string, not array, now } // we should make visible whether maintCCAddr is in CCList |