Files
zulip/static/js/feature_flags.js
Steve Howell 46e8005bfb Inline feature_flags.use_server_topic_history.
Despite a few warts, we are going forward with getting topic
history from the server when you click "more topics."  This
commit simplifies the code by removing the feature flag
checks.
2017-09-26 13:58:54 -07:00

25 lines
585 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;
return exports;
}());
if (typeof module !== 'undefined') {
module.exports = feature_flags;
}