mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This commit removes all references to feature_flags.local_echo. It's been a core feature for about four years, so I think we can safely say the experiment was successful.:)
		
			
				
	
	
		
			27 lines
		
	
	
		
			653 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			653 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var feature_flags = (function () {
 | 
						|
 | 
						|
var exports = {};
 | 
						|
 | 
						|
// Manually-flipped debugging flags
 | 
						|
exports.log_send_times = false;
 | 
						|
exports.collect_send_times = 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;
 | 
						|
}
 |