mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	When you read messages in a narrow and then un-narrow, collapse adjacent messages read in the narrow into a summary row that can be clicked to expand those messages. Scoped to staging with feature flags. The implementation of this within our current MessageList is rather ugly. (imported from commit bcb3a39d8c0c334136fe86318f18ead03f0f50bf)
		
			
				
	
	
		
			12 lines
		
	
	
		
			228 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			228 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;
 | 
						|
 | 
						|
return exports;
 | 
						|
 | 
						|
}());
 |