2013-08-01 17:59:23 +02:00
|
|
|
var feature_flags = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2017-09-22 19:20:19 +02:00
|
|
|
exports.load_server_counts = false;
|
|
|
|
|
2015-09-20 06:20:50 +02:00
|
|
|
// Experimental modification to support much wider message views.
|
|
|
|
exports.full_width = false;
|
2013-12-19 17:03:08 +01:00
|
|
|
|
2015-09-20 06:20:50 +02:00
|
|
|
// The features below have all settled into their final states and can
|
|
|
|
// be removed when we get a chance
|
2013-10-11 18:33:29 +02:00
|
|
|
exports.mark_read_at_bottom = true;
|
|
|
|
exports.propagate_topic_edits = true;
|
2013-12-18 22:22:36 +01:00
|
|
|
exports.clicking_notification_causes_narrow = true;
|
2013-10-11 18:33:29 +02:00
|
|
|
exports.collapsible = false;
|
2018-01-20 03:52:45 +01:00
|
|
|
exports.reminders_in_message_action_menu = false;
|
2013-09-23 23:57:50 +02:00
|
|
|
|
2013-08-01 17:59:23 +02:00
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|
2016-12-04 08:59:56 +01:00
|
|
|
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = feature_flags;
|
|
|
|
}
|