diff options
author | Byron Jones <glob@mozilla.com> | 2014-09-01 10:11:59 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-09-01 10:11:59 +0200 |
commit | 2af00b7a13d069719a0fff3f1dd709534e1f5fe9 (patch) | |
tree | 061640cf278a9bbc16d012f1dcb19b37a235f3da /extensions/InlineHistory | |
parent | 1f6f7f13093e0c3c51fe43fa9c4eb1330256ad93 (diff) | |
download | bugzilla-2af00b7a13d069719a0fff3f1dd709534e1f5fe9.tar.gz bugzilla-2af00b7a13d069719a0fff3f1dd709534e1f5fe9.tar.xz |
Bug 1059627: changes made at the same time as a comment are no longer grouped with the comment (revert Bug 1059088)
Diffstat (limited to 'extensions/InlineHistory')
-rw-r--r-- | extensions/InlineHistory/web/inline-history.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/InlineHistory/web/inline-history.js b/extensions/InlineHistory/web/inline-history.js index 019dc1e29..685798ec0 100644 --- a/extensions/InlineHistory/web/inline-history.js +++ b/extensions/InlineHistory/web/inline-history.js @@ -102,7 +102,7 @@ var inline_history = { var text = commentTimes[j].textContent || commentTimes[j].innerText; var mainTime = this.trim(text); - if (ih_activity_sort_order == 'oldest_to_newest' ? time >= mainTime : time <= mainTime) { + if (ih_activity_sort_order == 'oldest_to_newest' ? time > mainTime : time < mainTime) { if (j < commentTimes.length - 1) { continue; } else { |