2013-08-01 17:59:23 +02:00
|
|
|
var feature_flags = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2017-08-01 14:50:40 +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;
|
2015-08-20 02:57:30 +02:00
|
|
|
exports.dropbox_integration = false;
|
2013-09-23 23:57:50 +02:00
|
|
|
|
2017-08-10 13:00:51 +02:00
|
|
|
exports.use_server_topic_history = true;
|
2017-08-08 20:29:15 +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;
|
|
|
|
}
|