aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2012-04-11 02:41:20 +0200
committerMatěj Cepl <mcepl@redhat.com>2012-04-11 02:45:19 +0200
commitdd0b43442c1642eb6db6fb6a7711eefe7a1119ef (patch)
treec73ca419ea329ee2fb2e87faf2872a938de90849 /data/lib
parentba9bd8b38bb04421dbc4fa045b02a6f320d817d6 (diff)
downloadbugzilla-triage-dd0b43442c1642eb6db6fb6a7711eefe7a1119ef.tar.gz
Make the script bugs.eclipse.org compatible.
Closes #120
Diffstat (limited to 'data/lib')
-rw-r--r--data/lib/bugzillaDOMFunctions.js7
-rw-r--r--data/lib/bzpage.js2
2 files changed, 3 insertions, 6 deletions
diff --git a/data/lib/bugzillaDOMFunctions.js b/data/lib/bugzillaDOMFunctions.js
index 5c9423e..be30a3e 100644
--- a/data/lib/bugzillaDOMFunctions.js
+++ b/data/lib/bugzillaDOMFunctions.js
@@ -356,17 +356,14 @@ function getAttachments () {
* @return String with the login name of the currently logged-in user
*/
function getLogin () {
- var lastElemArr = "";
+ var lastElemArr = [];
var LIElementsArr = document.querySelectorAll("#header ul.links li");
// This should never be null
- console.log("LIElementsArr = " + LIElementsArr);
if (LIElementsArr.length > 0) {
- lastElemArr = Array.filter(LIElementsArr, function(el) {
- console.log("el = " + el.toSource());
+ lastElemArr = Array.filter(LIElementsArr, function(el, idx, arr) {
return (el.textContent.indexOf("Log") !== -1);
});
}
- console.log("lastElemArr = " + lastElemArr.toSource());
var lastLIElement = "";
if (lastElemArr) {
lastLIElement = lastElemArr.pop();
diff --git a/data/lib/bzpage.js b/data/lib/bzpage.js
index 8d7606f..e44f3f4 100644
--- a/data/lib/bzpage.js
+++ b/data/lib/bzpage.js
@@ -408,7 +408,7 @@ function startup() {
self.postMessage(new Message("GetInstalledPackages", {
location: window.location.href,
- login: getLogin()
+ login: getLogin(),
}));
}
}