From 2af00b7a13d069719a0fff3f1dd709534e1f5fe9 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Mon, 1 Sep 2014 16:11:59 +0800 Subject: Bug 1059627: changes made at the same time as a comment are no longer grouped with the comment (revert Bug 1059088) --- extensions/InlineHistory/web/inline-history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extensions/InlineHistory') 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 { -- cgit v1.2.3-24-g4f1b