mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	We should not allow every function who wants to narrow to All messages to come up with their own method to do so. This commit makes existing such functions use hashchange library to do so. Remove click event on All message button, it already contains an <a> tag which navigates correctly.
		
			
				
	
	
		
			18 lines
		
	
	
		
			449 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			449 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
exports.initialize = function () {
 | 
						|
    if (!page_params.search_pills_enabled) {
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    const container = $("#search_arrows");
 | 
						|
    exports.widget = search_pill.create_pills(container);
 | 
						|
 | 
						|
    exports.widget.onPillRemove(() => {
 | 
						|
        if (exports.widget.items().length === 0) {
 | 
						|
            hashchange.go_to_location("");
 | 
						|
        }
 | 
						|
    });
 | 
						|
 | 
						|
    exports.widget.createPillonPaste(() => false);
 | 
						|
};
 | 
						|
 | 
						|
window.search_pill_widget = exports;
 |