mirror of https://github.com/zulip/zulip.git
13 lines
328 B
JavaScript
13 lines
328 B
JavaScript
var feature_flags = (function () {
|
|
|
|
var exports = {};
|
|
|
|
exports.always_open_compose = true;
|
|
exports.mark_read_at_bottom = page_params.staging;
|
|
exports.summarize_read_while_narrowed = page_params.staging;
|
|
exports.twenty_four_hour_time = _.contains([],
|
|
page_params.email);
|
|
return exports;
|
|
|
|
}());
|