diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-04 00:01:53 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-04 00:01:53 +0200 |
commit | b75478ef16eaf6d0dfd4c6ed3059d844158512e7 (patch) | |
tree | 0b11b1756b7b9897e829d8528b8ebd0a4e2fe4e5 /data/lib/bzpage.js | |
parent | 0ace4d34ece35b717b64ee1d3312cdc3c07696b5 (diff) | |
download | bugzilla-triage-b75478ef16eaf6d0dfd4c6ed3059d844158512e7.tar.gz |
Move marking reporter's to otherButtons module.
Diffstat (limited to 'data/lib/bzpage.js')
-rw-r--r-- | data/lib/bzpage.js | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/data/lib/bzpage.js b/data/lib/bzpage.js index d65c232..f99d60c 100644 --- a/data/lib/bzpage.js +++ b/data/lib/bzpage.js @@ -325,29 +325,6 @@ function setConfigurationButton () { } /** - * Set background color of all comments made by reporter in ReporterColor color - * - */ -function checkComments () { - var reporter = getReporter(); - commentsWalker(function(x) { - var email = parseMailto(x.getElementsByClassName("vcard")[0] - .getElementsByTagName("a")[0]); - if (email.indexOf(reporter) != -1) { - x.style.backgroundColor = ReporterColor.toString(); - } - }); -} - -function collectComments () { - var outStr = ""; - commentsWalker(function(x) { - outStr += x.getElementsByTagName("pre")[0].textContent + "\n"; - }); - return outStr.trim(); -} - -/** * dd * * @return Element with the href attribute containng the information |