mirror of https://github.com/zulip/zulip.git
Remove feature_flags.fade_at_stream_granularity.
This commit is contained in:
parent
49ab8035f8
commit
807afc87ba
|
@ -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) {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue