mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			564 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			564 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import * as muting_ui from "./muting_ui";
 | 
						|
 | 
						|
export let loaded = false;
 | 
						|
 | 
						|
export function set_up() {
 | 
						|
    loaded = true;
 | 
						|
    $("body").on("click", ".settings-unmute-topic", function (e) {
 | 
						|
        const $row = $(this).closest("tr");
 | 
						|
        const stream_id = Number.parseInt($row.attr("data-stream-id"), 10);
 | 
						|
        const topic = $row.attr("data-topic");
 | 
						|
 | 
						|
        e.stopImmediatePropagation();
 | 
						|
 | 
						|
        muting_ui.unmute_topic(stream_id, topic);
 | 
						|
        $row.remove();
 | 
						|
    });
 | 
						|
 | 
						|
    muting_ui.set_up_muted_topics_ui();
 | 
						|
}
 | 
						|
 | 
						|
export function reset() {
 | 
						|
    loaded = false;
 | 
						|
}
 |