Remove feature_flags.fade_at_stream_granularity.

This commit is contained in:
Steve Howell 2017-02-23 14:41:45 -08:00 committed by Tim Abbott
parent 49ab8035f8
commit 807afc87ba
2 changed files with 1 additions and 6 deletions

View File

@ -5,8 +5,7 @@ var exports = {};
var focused_recipient; var focused_recipient;
var normal_display = false; var normal_display = false;
var fade_heuristic = feature_flags.fade_at_stream_granularity ? var fade_heuristic = util.same_recipient;
util.same_major_recipient : util.same_recipient;
exports.set_focused_recipient = function (msg_type) { exports.set_focused_recipient = function (msg_type) {
if (msg_type === undefined) { if (msg_type === undefined) {

View File

@ -13,10 +13,6 @@ exports.full_width = false;
// Beta rewrite of the Bot UI; probably worth finishing and deploying // Beta rewrite of the Bot UI; probably worth finishing and deploying
exports.new_bot_ui = false; exports.new_bot_ui = false;
// Experimental feature to not fade messages that differ only in
// topic; was not a successful experiment so can be deleted.
exports.fade_at_stream_granularity = false;
// The features below have all settled into their final states and can // The features below have all settled into their final states and can
// be removed when we get a chance // be removed when we get a chance
exports.cleanup_before_reload = true; exports.cleanup_before_reload = true;