mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Inputs are given a tabindex of -1 in the handlebars templates, this is added and removed in the show and hide events of the bootstrap collapse. (imported from commit 2c54c39edc396d3d18330df4583d901690dd71fa)
		
			
				
	
	
		
			12 lines
		
	
	
		
			411 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			411 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
{{#if can_make_public}}
 | 
						|
  <button class="zulip-button blue-button make-stream-public-button" data-stream-name="{{name}}" tabindex="-1">
 | 
						|
    Make stream public
 | 
						|
  </button>
 | 
						|
{{/if}}
 | 
						|
{{#if can_make_private}}
 | 
						|
  <button class="zulip-button red-button make-stream-private-button" data-stream-name="{{name}}" tabindex="-1">
 | 
						|
    Make stream private
 | 
						|
  </button>
 | 
						|
{{/if}}
 | 
						|
<div class="change-stream-privacy-feedback"></div>
 |