mirror of https://github.com/twbs/bootstrap.git
				
				
				
			Docs: progress bars' animation now needs to be manually toggled
Refs #14409
This commit is contained in:
		
							parent
							
								
									5eb08f5d8d
								
							
						
					
					
						commit
						66e140db82
					
				|  | @ -168,8 +168,9 @@ | |||
|   <p>Add <code>.active</code> to <code>.progress-bar-striped</code> to animate the stripes right to left. Not available in IE9 and below.</p> | ||||
|   <div class="bs-example"> | ||||
|     <div class="progress"> | ||||
|       <div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%"><span class="sr-only">45% Complete</span></div> | ||||
|       <div class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%"><span class="sr-only">45% Complete</span></div> | ||||
|     </div> | ||||
|     <button type="button" class="btn btn-default bs-docs-activate-animated-progressbar" data-toggle="button" aria-pressed="false" autocomplete="off">Toggle animation</button> | ||||
|   </div> | ||||
| {% highlight html %} | ||||
| <div class="progress"> | ||||
|  |  | |||
|  | @ -101,7 +101,7 @@ | |||
|     $('.bs-docs-popover').popover() | ||||
| 
 | ||||
|     // Button state demo
 | ||||
|     $('#loading-example-btn').click(function () { | ||||
|     $('#loading-example-btn').on('click', function () { | ||||
|       var btn = $(this) | ||||
|       btn.button('loading') | ||||
|       setTimeout(function () { | ||||
|  | @ -109,6 +109,10 @@ | |||
|       }, 3000) | ||||
|     }) | ||||
| 
 | ||||
|     // Activate animated progress bar
 | ||||
|     $('.bs-docs-activate-animated-progressbar').on('click', function () { | ||||
|       $(this).siblings('.progress').find('.progress-bar-striped').toggleClass('active') | ||||
|     }) | ||||
| 
 | ||||
|     // Config ZeroClipboard
 | ||||
|     ZeroClipboard.config({ | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue