mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			511 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			511 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
const search_pill = require("./search_pill");
 | 
						|
 | 
						|
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;
 |