| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | /* ============================================================ | 
					
						
							| 
									
										
										
										
											2012-06-02 02:04:27 +08:00
										 |  |  |  * bootstrap-button.js v2.0.4 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |  * http://twitter.github.com/bootstrap/javascript.html#buttons
 | 
					
						
							|  |  |  |  * ============================================================ | 
					
						
							| 
									
										
										
										
											2012-01-15 15:28:48 +08:00
										 |  |  |  * Copyright 2012 Twitter, Inc. | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  * ============================================================ */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-25 09:59:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  | !function ($) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   "use strict"; // jshint ;_;
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 10:55:44 +08:00
										 |  |  |  /* BUTTON PUBLIC CLASS DEFINITION | 
					
						
							|  |  |  |   * ============================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |   var Button = function (element, options) { | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |     this.$element = $(element) | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |     this.options = $.extend({}, $.fn.button.defaults, options) | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-11-25 10:55:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |   Button.prototype.setState = function (state) { | 
					
						
							|  |  |  |     var d = 'disabled' | 
					
						
							|  |  |  |       , $el = this.$element | 
					
						
							|  |  |  |       , data = $el.data() | 
					
						
							|  |  |  |       , val = $el.is('input') ? 'val' : 'html' | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |     state = state + 'Text' | 
					
						
							|  |  |  |     data.resetText || $el.data('resetText', $el[val]()) | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |     $el[val](data[state] || this.options[state]) | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |     // push to event loop to allow forms to submit
 | 
					
						
							|  |  |  |     setTimeout(function () { | 
					
						
							|  |  |  |       state == 'loadingText' ? | 
					
						
							|  |  |  |         $el.addClass(d).attr(d, d) : | 
					
						
							|  |  |  |         $el.removeClass(d).removeAttr(d) | 
					
						
							|  |  |  |     }, 0) | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |   Button.prototype.toggle = function () { | 
					
						
							|  |  |  |     var $parent = this.$element.parent('[data-toggle="buttons-radio"]') | 
					
						
							| 
									
										
										
										
											2011-11-25 06:43:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |     $parent && $parent | 
					
						
							|  |  |  |       .find('.active') | 
					
						
							|  |  |  |       .removeClass('active') | 
					
						
							| 
									
										
										
										
											2011-11-25 06:43:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |     this.$element.toggleClass('active') | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 10:55:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  /* BUTTON PLUGIN DEFINITION | 
					
						
							|  |  |  |   * ======================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |   $.fn.button = function (option) { | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |     return this.each(function () { | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |       var $this = $(this) | 
					
						
							|  |  |  |         , data = $this.data('button') | 
					
						
							|  |  |  |         , options = typeof option == 'object' && option | 
					
						
							|  |  |  |       if (!data) $this.data('button', (data = new Button(this, options))) | 
					
						
							|  |  |  |       if (option == 'toggle') data.toggle() | 
					
						
							|  |  |  |       else if (option) data.setState(option) | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |     }) | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   $.fn.button.defaults = { | 
					
						
							|  |  |  |     loadingText: 'loading...' | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 15:28:48 +08:00
										 |  |  |   $.fn.button.Constructor = Button | 
					
						
							| 
									
										
										
										
											2011-11-25 10:55:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  /* BUTTON DATA-API | 
					
						
							|  |  |  |   * =============== */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |   $(function () { | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |     $('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) { | 
					
						
							| 
									
										
										
										
											2012-02-19 15:29:58 +08:00
										 |  |  |       var $btn = $(e.target) | 
					
						
							|  |  |  |       if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') | 
					
						
							|  |  |  |       $btn.button('toggle') | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  | }(window.jQuery); |