mirror of https://github.com/zulip/zulip.git
Remove feature_flags.fade_users_when_composing.
This commit is contained in:
parent
b3dfa79482
commit
96ca684d40
|
@ -38,9 +38,6 @@ function _display_messages_normally() {
|
|||
}
|
||||
|
||||
function _display_users_normally() {
|
||||
if (!feature_flags.fade_users_when_composing) {
|
||||
return;
|
||||
}
|
||||
$('.user_sidebar_entry').removeClass('faded').removeClass('unfaded');
|
||||
}
|
||||
|
||||
|
@ -127,9 +124,6 @@ exports.would_receive_message = function (email) {
|
|||
};
|
||||
|
||||
function _fade_users() {
|
||||
if (!feature_flags.fade_users_when_composing) {
|
||||
return;
|
||||
}
|
||||
_.forEach($('.user_sidebar_entry'), function (elt) {
|
||||
elt = $(elt);
|
||||
var user_id = elt.attr('data-user-id');
|
||||
|
|
|
@ -16,7 +16,6 @@ exports.new_bot_ui = false;
|
|||
// The features below have all settled into their final states and can
|
||||
// be removed when we get a chance
|
||||
exports.cleanup_before_reload = true;
|
||||
exports.fade_users_when_composing = true;
|
||||
exports.mark_read_at_bottom = true;
|
||||
exports.propagate_topic_edits = true;
|
||||
exports.clicking_notification_causes_narrow = true;
|
||||
|
|
Loading…
Reference in New Issue