Files
zulip/static/js/feature_flags.js
Steve Howell f965a156a9 Revert "Get unread messages from the server in the web app."
This reverts commit c953759486.

The client side logic for dealing with server counts is actually
fine, as far as we know, but there are still some data-related
issues with cleaning up old unread counts.
2017-09-22 10:20:19 -07:00

27 lines
627 B
JavaScript

var feature_flags = (function () {
var exports = {};
exports.load_server_counts = false;
// 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;
}