Files
zulip/static/js/feature_flags.js
Steve Howell 0f42feb131 Turn on always-open-compose for all realms.
(imported from commit 0a7b35a4144e5645adbfd9b8fffb78573e676ad4)
2013-08-05 18:14:57 -04:00

11 lines
167 B
JavaScript

var feature_flags = (function () {
var exports = {};
exports.always_open_compose = true;
exports.mark_read_at_bottom = page_params.staging;
return exports;
}());