Files
zulip/static/js/feature_flags.js
Steve Howell c953759486 Get unread messages from the server in the web app.
The server sends down lists of unread message ids in various
buckets, and we now use those on the client to provide more
complete counts of unread messages.
2017-09-12 06:02:40 -07:00

25 lines
590 B
JavaScript

var feature_flags = (function () {
var exports = {};
// Experimental modification to support much wider message views.
exports.full_width = false;
// The features below have all settled into their final states and can
// be removed when we get a chance
exports.mark_read_at_bottom = true;
exports.propagate_topic_edits = true;
exports.clicking_notification_causes_narrow = true;
exports.collapsible = false;
exports.dropbox_integration = false;
exports.use_server_topic_history = true;
return exports;
}());
if (typeof module !== 'undefined') {
module.exports = feature_flags;
}