summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2014-04-09 17:21:04 +0200
committerByron Jones <glob@mozilla.com>2014-04-09 17:21:04 +0200
commitad9b149541d21e6e4e782da9785ba5fd16e9ccc7 (patch)
tree4c9da6716ef52de6a7326d74d16568eb38b4f9c3 /js
parent3ef245b21a397e5253ba1bda607a1510245d5c09 (diff)
downloadbugzilla-ad9b149541d21e6e4e782da9785ba5fd16e9ccc7.tar.gz
bugzilla-ad9b149541d21e6e4e782da9785ba5fd16e9ccc7.tar.xz
Bug 974411: js/comments.js::toggle_all_comments() shouldn't try to match
non-comment elements r=gerv, a=glob
Diffstat (limited to 'js')
-rw-r--r--js/comments.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/js/comments.js b/js/comments.js
index 8d314de15..9150c72ec 100644
--- a/js/comments.js
+++ b/js/comments.js
@@ -40,13 +40,16 @@ function toggle_all_comments(action) {
var comment = comments[i];
if (!comment)
continue;
-
- var id = comments[i].id.match(/\d*$/);
+ var id = comment.id.match(/^comment_text_(\d*)$/);
+ if (!id)
+ continue;
+ id = id[1];
var link = document.getElementById('comment_link_' + id);
- if (action == 'collapse')
+ if (action == 'collapse') {
collapse_comment(link, comment, id);
- else
+ } else {
expand_comment(link, comment, id);
+ }
}
}