mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Add a checkbox that propagates topic edits to subsequent messages.
Trac #1348 (imported from commit 28e2a8cb3ecda5ec50d17501f4ccbd8644212065)
This commit is contained in:
		@@ -14,6 +14,10 @@ exports.save = function (row) {
 | 
			
		||||
        var new_topic = row.find(".message_edit_topic").val();
 | 
			
		||||
        if (new_topic !== message.subject && new_topic.trim() !== "") {
 | 
			
		||||
            request.subject = new_topic;
 | 
			
		||||
 | 
			
		||||
            if (row.find(".message_edit_topic_propagate>input").is(":checked")) {
 | 
			
		||||
                request.propagate_subject = true;
 | 
			
		||||
            }
 | 
			
		||||
            changed = true;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user