info@54
|
1 |
/* ========================================================================
|
info@54
|
2 |
* Bootstrap: button.js v3.0.3
|
info@54
|
3 |
* http://getbootstrap.com/javascript/#buttons
|
info@54
|
4 |
* ========================================================================
|
info@54
|
5 |
* Copyright 2013 Twitter, Inc.
|
info@54
|
6 |
*
|
info@54
|
7 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
info@54
|
8 |
* you may not use this file except in compliance with the License.
|
info@54
|
9 |
* You may obtain a copy of the License at
|
info@54
|
10 |
*
|
info@54
|
11 |
* http://www.apache.org/licenses/LICENSE-2.0
|
info@54
|
12 |
*
|
info@54
|
13 |
* Unless required by applicable law or agreed to in writing, software
|
info@54
|
14 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
info@54
|
15 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
info@54
|
16 |
* See the License for the specific language governing permissions and
|
info@54
|
17 |
* limitations under the License.
|
info@54
|
18 |
* ======================================================================== */
|
info@54
|
19 |
|
info@54
|
20 |
|
info@54
|
21 |
+function ($) { "use strict";
|
info@54
|
22 |
|
info@54
|
23 |
// BUTTON PUBLIC CLASS DEFINITION
|
info@54
|
24 |
// ==============================
|
info@54
|
25 |
|
info@54
|
26 |
var Button = function (element, options) {
|
info@54
|
27 |
this.$element = $(element)
|
info@54
|
28 |
this.options = $.extend({}, Button.DEFAULTS, options)
|
info@54
|
29 |
}
|
info@54
|
30 |
|
info@54
|
31 |
Button.DEFAULTS = {
|
info@54
|
32 |
loadingText: 'loading...'
|
info@54
|
33 |
}
|
info@54
|
34 |
|
info@54
|
35 |
Button.prototype.setState = function (state) {
|
info@54
|
36 |
var d = 'disabled'
|
info@54
|
37 |
var $el = this.$element
|
info@54
|
38 |
var val = $el.is('input') ? 'val' : 'html'
|
info@54
|
39 |
var data = $el.data()
|
info@54
|
40 |
|
info@54
|
41 |
state = state + 'Text'
|
info@54
|
42 |
|
info@54
|
43 |
if (!data.resetText) $el.data('resetText', $el[val]())
|
info@54
|
44 |
|
info@54
|
45 |
$el[val](data[state] || this.options[state])
|
info@54
|
46 |
|
info@54
|
47 |
// push to event loop to allow forms to submit
|
info@54
|
48 |
setTimeout(function () {
|
info@54
|
49 |
state == 'loadingText' ?
|
info@54
|
50 |
$el.addClass(d).attr(d, d) :
|
info@54
|
51 |
$el.removeClass(d).removeAttr(d);
|
info@54
|
52 |
}, 0)
|
info@54
|
53 |
}
|
info@54
|
54 |
|
info@54
|
55 |
Button.prototype.toggle = function () {
|
info@54
|
56 |
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
info@54
|
57 |
var changed = true
|
info@54
|
58 |
|
info@54
|
59 |
if ($parent.length) {
|
info@54
|
60 |
var $input = this.$element.find('input')
|
info@54
|
61 |
if ($input.prop('type') === 'radio') {
|
info@54
|
62 |
// see if clicking on current one
|
info@54
|
63 |
if ($input.prop('checked') && this.$element.hasClass('active'))
|
info@54
|
64 |
changed = false
|
info@54
|
65 |
else
|
info@54
|
66 |
$parent.find('.active').removeClass('active')
|
info@54
|
67 |
}
|
info@54
|
68 |
if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
|
info@54
|
69 |
}
|
info@54
|
70 |
|
info@54
|
71 |
if (changed) this.$element.toggleClass('active')
|
info@54
|
72 |
}
|
info@54
|
73 |
|
info@54
|
74 |
|
info@54
|
75 |
// BUTTON PLUGIN DEFINITION
|
info@54
|
76 |
// ========================
|
info@54
|
77 |
|
info@54
|
78 |
var old = $.fn.button
|
info@54
|
79 |
|
info@54
|
80 |
$.fn.button = function (option) {
|
info@54
|
81 |
return this.each(function () {
|
info@54
|
82 |
var $this = $(this)
|
info@54
|
83 |
var data = $this.data('bs.button')
|
info@54
|
84 |
var options = typeof option == 'object' && option
|
info@54
|
85 |
|
info@54
|
86 |
if (!data) $this.data('bs.button', (data = new Button(this, options)))
|
info@54
|
87 |
|
info@54
|
88 |
if (option == 'toggle') data.toggle()
|
info@54
|
89 |
else if (option) data.setState(option)
|
info@54
|
90 |
})
|
info@54
|
91 |
}
|
info@54
|
92 |
|
info@54
|
93 |
$.fn.button.Constructor = Button
|
info@54
|
94 |
|
info@54
|
95 |
|
info@54
|
96 |
// BUTTON NO CONFLICT
|
info@54
|
97 |
// ==================
|
info@54
|
98 |
|
info@54
|
99 |
$.fn.button.noConflict = function () {
|
info@54
|
100 |
$.fn.button = old
|
info@54
|
101 |
return this
|
info@54
|
102 |
}
|
info@54
|
103 |
|
info@54
|
104 |
|
info@54
|
105 |
// BUTTON DATA-API
|
info@54
|
106 |
// ===============
|
info@54
|
107 |
|
info@54
|
108 |
$(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
|
info@54
|
109 |
var $btn = $(e.target)
|
info@54
|
110 |
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
info@54
|
111 |
$btn.button('toggle')
|
info@54
|
112 |
e.preventDefault()
|
info@54
|
113 |
})
|
info@54
|
114 |
|
info@54
|
115 |
}(jQuery);
|