mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			25 lines
		
	
	
		
			585 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			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;
 | 
						|
}
 |