Files
zulip/static/js/feature_flags.js
Anders Kaseorg d17b577d0c js: Purge useless IIFEs.
With webpack, variables declared in each file are already file-local
(Global variables need to be explicitly exported), so these IIFEs are
no longer needed.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2019-10-25 13:51:21 -07:00

8 lines
279 B
JavaScript

// The features below have all settled into their final states and can
// be removed when we get a chance
exports.propagate_topic_edits = true;
exports.clicking_notification_causes_narrow = true;
exports.reminders_in_message_action_menu = false;
window.feature_flags = exports;