From a8816f81c09f9355c257c8fd9e9cea370dbb99e4 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 28 Mar 2013 17:33:45 -0400 Subject: [PATCH] Comment out blueslip scroll finish error to quiet emails A ticket is filed and this error is not fatal to the UI but rather a warning to investigate, which we will now do (imported from commit 3f67ec2b503e91b3921e33b89febd97790e389f1) --- zephyr/static/js/ui.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/zephyr/static/js/ui.js b/zephyr/static/js/ui.js index b209403dc8..13cd9157f1 100644 --- a/zephyr/static/js/ui.js +++ b/zephyr/static/js/ui.js @@ -577,7 +577,14 @@ $(function () { var new_selected = current_msg_list.selected_id(); if (scroll_start_message === undefined) { - blueslip.error("Got a scroll finish with no saved message from scroll start"); + // blueslip.error("Got a scroll finish with no saved message from scroll start"); + // This is being intermittently hit, and while not fatal or bothersome for the UI, + // it is something we want to trac down. To quiet emails, this is commented out + // for now. + // https://trac.humbughq.com/ticket/1138 + // + // Make the block not empty to appease jslint + var ignored = true; } else if (new_selected > scroll_start_message) { var mark_as_read = []; $.each(message_range(current_msg_list, scroll_start_message, new_selected),