mirror of https://github.com/zulip/zulip.git
Clean up comments in feature_flags.js.
(imported from commit aad58c3f8b3d21ee9d5a3a45dbf2440b3d51c6e8)
This commit is contained in:
parent
b7bb55932a
commit
25a9ccccf1
|
@ -11,6 +11,8 @@ exports.do_not_share_the_love = page_params.voyager;
|
|||
// Manually-flipped debugging flags
|
||||
exports.log_send_times = false;
|
||||
exports.collect_send_times = false;
|
||||
exports.use_socket = true;
|
||||
exports.local_echo = true;
|
||||
|
||||
// Permanent realm-specific stuff:
|
||||
exports.disable_message_editing = _.contains(['mit.edu'], page_params.domain);
|
||||
|
@ -19,24 +21,24 @@ exports.is_og_zulip_user = _.contains(og_zuliper_emails, page_params.email);
|
|||
exports.left_side_userlist = _.contains(['customer7.invalid'], page_params.domain);
|
||||
exports.enable_new_user_app_alerts = ! _.contains(['employees.customer16.invalid'], page_params.domain);
|
||||
|
||||
// Still very beta:
|
||||
// Experimental modification to support much wider message views.
|
||||
exports.full_width = false;
|
||||
|
||||
exports.full_width = false; //page_params.staging;
|
||||
// Beta rewrite of the Bot UI; probably worth finishing and deploying
|
||||
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
|
||||
// be removed when we get a chance
|
||||
exports.cleanup_before_reload = true;
|
||||
exports.new_bot_ui = false; // page_params.staging;
|
||||
|
||||
exports.fade_at_stream_granularity = page_params.staging;
|
||||
|
||||
// Still burning in...
|
||||
exports.fade_users_when_composing = true;
|
||||
exports.mark_read_at_bottom = true;
|
||||
exports.propagate_topic_edits = true;
|
||||
exports.clicking_notification_causes_narrow = true;
|
||||
exports.use_socket = true;
|
||||
exports.local_echo = true;
|
||||
exports.negated_search = true;
|
||||
|
||||
// Ready for deprecation.
|
||||
exports.collapsible = false;
|
||||
exports.dropbox_integration = false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue