Remove feature_flags.fade_users_when_composing.

This commit is contained in:
Steve Howell 2017-02-23 14:43:51 -08:00 committed by Tim Abbott
parent b3dfa79482
commit 96ca684d40
2 changed files with 0 additions and 7 deletions

View File

@ -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');

View File

@ -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;