1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/bootstrap-source/bootstrap-3.0.3/js/button.js Fri Dec 20 22:49:16 2013 +0100
1.3 @@ -0,0 +1,115 @@
1.4 +/* ========================================================================
1.5 + * Bootstrap: button.js v3.0.3
1.6 + * http://getbootstrap.com/javascript/#buttons
1.7 + * ========================================================================
1.8 + * Copyright 2013 Twitter, Inc.
1.9 + *
1.10 + * Licensed under the Apache License, Version 2.0 (the "License");
1.11 + * you may not use this file except in compliance with the License.
1.12 + * You may obtain a copy of the License at
1.13 + *
1.14 + * http://www.apache.org/licenses/LICENSE-2.0
1.15 + *
1.16 + * Unless required by applicable law or agreed to in writing, software
1.17 + * distributed under the License is distributed on an "AS IS" BASIS,
1.18 + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1.19 + * See the License for the specific language governing permissions and
1.20 + * limitations under the License.
1.21 + * ======================================================================== */
1.22 +
1.23 +
1.24 ++function ($) { "use strict";
1.25 +
1.26 + // BUTTON PUBLIC CLASS DEFINITION
1.27 + // ==============================
1.28 +
1.29 + var Button = function (element, options) {
1.30 + this.$element = $(element)
1.31 + this.options = $.extend({}, Button.DEFAULTS, options)
1.32 + }
1.33 +
1.34 + Button.DEFAULTS = {
1.35 + loadingText: 'loading...'
1.36 + }
1.37 +
1.38 + Button.prototype.setState = function (state) {
1.39 + var d = 'disabled'
1.40 + var $el = this.$element
1.41 + var val = $el.is('input') ? 'val' : 'html'
1.42 + var data = $el.data()
1.43 +
1.44 + state = state + 'Text'
1.45 +
1.46 + if (!data.resetText) $el.data('resetText', $el[val]())
1.47 +
1.48 + $el[val](data[state] || this.options[state])
1.49 +
1.50 + // push to event loop to allow forms to submit
1.51 + setTimeout(function () {
1.52 + state == 'loadingText' ?
1.53 + $el.addClass(d).attr(d, d) :
1.54 + $el.removeClass(d).removeAttr(d);
1.55 + }, 0)
1.56 + }
1.57 +
1.58 + Button.prototype.toggle = function () {
1.59 + var $parent = this.$element.closest('[data-toggle="buttons"]')
1.60 + var changed = true
1.61 +
1.62 + if ($parent.length) {
1.63 + var $input = this.$element.find('input')
1.64 + if ($input.prop('type') === 'radio') {
1.65 + // see if clicking on current one
1.66 + if ($input.prop('checked') && this.$element.hasClass('active'))
1.67 + changed = false
1.68 + else
1.69 + $parent.find('.active').removeClass('active')
1.70 + }
1.71 + if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
1.72 + }
1.73 +
1.74 + if (changed) this.$element.toggleClass('active')
1.75 + }
1.76 +
1.77 +
1.78 + // BUTTON PLUGIN DEFINITION
1.79 + // ========================
1.80 +
1.81 + var old = $.fn.button
1.82 +
1.83 + $.fn.button = function (option) {
1.84 + return this.each(function () {
1.85 + var $this = $(this)
1.86 + var data = $this.data('bs.button')
1.87 + var options = typeof option == 'object' && option
1.88 +
1.89 + if (!data) $this.data('bs.button', (data = new Button(this, options)))
1.90 +
1.91 + if (option == 'toggle') data.toggle()
1.92 + else if (option) data.setState(option)
1.93 + })
1.94 + }
1.95 +
1.96 + $.fn.button.Constructor = Button
1.97 +
1.98 +
1.99 + // BUTTON NO CONFLICT
1.100 + // ==================
1.101 +
1.102 + $.fn.button.noConflict = function () {
1.103 + $.fn.button = old
1.104 + return this
1.105 + }
1.106 +
1.107 +
1.108 + // BUTTON DATA-API
1.109 + // ===============
1.110 +
1.111 + $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
1.112 + var $btn = $(e.target)
1.113 + if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
1.114 + $btn.button('toggle')
1.115 + e.preventDefault()
1.116 + })
1.117 +
1.118 +}(jQuery);