info@54
|
1 |
/* ========================================================================
|
info@54
|
2 |
* Bootstrap: modal.js v3.0.3
|
info@54
|
3 |
* http://getbootstrap.com/javascript/#modals
|
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 |
// MODAL CLASS DEFINITION
|
info@54
|
24 |
// ======================
|
info@54
|
25 |
|
info@54
|
26 |
var Modal = function (element, options) {
|
info@54
|
27 |
this.options = options
|
info@54
|
28 |
this.$element = $(element)
|
info@54
|
29 |
this.$backdrop =
|
info@54
|
30 |
this.isShown = null
|
info@54
|
31 |
|
info@54
|
32 |
if (this.options.remote) this.$element.load(this.options.remote)
|
info@54
|
33 |
}
|
info@54
|
34 |
|
info@54
|
35 |
Modal.DEFAULTS = {
|
info@54
|
36 |
backdrop: true
|
info@54
|
37 |
, keyboard: true
|
info@54
|
38 |
, show: true
|
info@54
|
39 |
}
|
info@54
|
40 |
|
info@54
|
41 |
Modal.prototype.toggle = function (_relatedTarget) {
|
info@54
|
42 |
return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)
|
info@54
|
43 |
}
|
info@54
|
44 |
|
info@54
|
45 |
Modal.prototype.show = function (_relatedTarget) {
|
info@54
|
46 |
var that = this
|
info@54
|
47 |
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
|
info@54
|
48 |
|
info@54
|
49 |
this.$element.trigger(e)
|
info@54
|
50 |
|
info@54
|
51 |
if (this.isShown || e.isDefaultPrevented()) return
|
info@54
|
52 |
|
info@54
|
53 |
this.isShown = true
|
info@54
|
54 |
|
info@54
|
55 |
this.escape()
|
info@54
|
56 |
|
info@54
|
57 |
this.$element.on('click.dismiss.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
|
info@54
|
58 |
|
info@54
|
59 |
this.backdrop(function () {
|
info@54
|
60 |
var transition = $.support.transition && that.$element.hasClass('fade')
|
info@54
|
61 |
|
info@54
|
62 |
if (!that.$element.parent().length) {
|
info@54
|
63 |
that.$element.appendTo(document.body) // don't move modals dom position
|
info@54
|
64 |
}
|
info@54
|
65 |
|
info@54
|
66 |
that.$element.show()
|
info@54
|
67 |
|
info@54
|
68 |
if (transition) {
|
info@54
|
69 |
that.$element[0].offsetWidth // force reflow
|
info@54
|
70 |
}
|
info@54
|
71 |
|
info@54
|
72 |
that.$element
|
info@54
|
73 |
.addClass('in')
|
info@54
|
74 |
.attr('aria-hidden', false)
|
info@54
|
75 |
|
info@54
|
76 |
that.enforceFocus()
|
info@54
|
77 |
|
info@54
|
78 |
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
|
info@54
|
79 |
|
info@54
|
80 |
transition ?
|
info@54
|
81 |
that.$element.find('.modal-dialog') // wait for modal to slide in
|
info@54
|
82 |
.one($.support.transition.end, function () {
|
info@54
|
83 |
that.$element.focus().trigger(e)
|
info@54
|
84 |
})
|
info@54
|
85 |
.emulateTransitionEnd(300) :
|
info@54
|
86 |
that.$element.focus().trigger(e)
|
info@54
|
87 |
})
|
info@54
|
88 |
}
|
info@54
|
89 |
|
info@54
|
90 |
Modal.prototype.hide = function (e) {
|
info@54
|
91 |
if (e) e.preventDefault()
|
info@54
|
92 |
|
info@54
|
93 |
e = $.Event('hide.bs.modal')
|
info@54
|
94 |
|
info@54
|
95 |
this.$element.trigger(e)
|
info@54
|
96 |
|
info@54
|
97 |
if (!this.isShown || e.isDefaultPrevented()) return
|
info@54
|
98 |
|
info@54
|
99 |
this.isShown = false
|
info@54
|
100 |
|
info@54
|
101 |
this.escape()
|
info@54
|
102 |
|
info@54
|
103 |
$(document).off('focusin.bs.modal')
|
info@54
|
104 |
|
info@54
|
105 |
this.$element
|
info@54
|
106 |
.removeClass('in')
|
info@54
|
107 |
.attr('aria-hidden', true)
|
info@54
|
108 |
.off('click.dismiss.modal')
|
info@54
|
109 |
|
info@54
|
110 |
$.support.transition && this.$element.hasClass('fade') ?
|
info@54
|
111 |
this.$element
|
info@54
|
112 |
.one($.support.transition.end, $.proxy(this.hideModal, this))
|
info@54
|
113 |
.emulateTransitionEnd(300) :
|
info@54
|
114 |
this.hideModal()
|
info@54
|
115 |
}
|
info@54
|
116 |
|
info@54
|
117 |
Modal.prototype.enforceFocus = function () {
|
info@54
|
118 |
$(document)
|
info@54
|
119 |
.off('focusin.bs.modal') // guard against infinite focus loop
|
info@54
|
120 |
.on('focusin.bs.modal', $.proxy(function (e) {
|
info@54
|
121 |
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
info@54
|
122 |
this.$element.focus()
|
info@54
|
123 |
}
|
info@54
|
124 |
}, this))
|
info@54
|
125 |
}
|
info@54
|
126 |
|
info@54
|
127 |
Modal.prototype.escape = function () {
|
info@54
|
128 |
if (this.isShown && this.options.keyboard) {
|
info@54
|
129 |
this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
|
info@54
|
130 |
e.which == 27 && this.hide()
|
info@54
|
131 |
}, this))
|
info@54
|
132 |
} else if (!this.isShown) {
|
info@54
|
133 |
this.$element.off('keyup.dismiss.bs.modal')
|
info@54
|
134 |
}
|
info@54
|
135 |
}
|
info@54
|
136 |
|
info@54
|
137 |
Modal.prototype.hideModal = function () {
|
info@54
|
138 |
var that = this
|
info@54
|
139 |
this.$element.hide()
|
info@54
|
140 |
this.backdrop(function () {
|
info@54
|
141 |
that.removeBackdrop()
|
info@54
|
142 |
that.$element.trigger('hidden.bs.modal')
|
info@54
|
143 |
})
|
info@54
|
144 |
}
|
info@54
|
145 |
|
info@54
|
146 |
Modal.prototype.removeBackdrop = function () {
|
info@54
|
147 |
this.$backdrop && this.$backdrop.remove()
|
info@54
|
148 |
this.$backdrop = null
|
info@54
|
149 |
}
|
info@54
|
150 |
|
info@54
|
151 |
Modal.prototype.backdrop = function (callback) {
|
info@54
|
152 |
var that = this
|
info@54
|
153 |
var animate = this.$element.hasClass('fade') ? 'fade' : ''
|
info@54
|
154 |
|
info@54
|
155 |
if (this.isShown && this.options.backdrop) {
|
info@54
|
156 |
var doAnimate = $.support.transition && animate
|
info@54
|
157 |
|
info@54
|
158 |
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
|
info@54
|
159 |
.appendTo(document.body)
|
info@54
|
160 |
|
info@54
|
161 |
this.$element.on('click.dismiss.modal', $.proxy(function (e) {
|
info@54
|
162 |
if (e.target !== e.currentTarget) return
|
info@54
|
163 |
this.options.backdrop == 'static'
|
info@54
|
164 |
? this.$element[0].focus.call(this.$element[0])
|
info@54
|
165 |
: this.hide.call(this)
|
info@54
|
166 |
}, this))
|
info@54
|
167 |
|
info@54
|
168 |
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
info@54
|
169 |
|
info@54
|
170 |
this.$backdrop.addClass('in')
|
info@54
|
171 |
|
info@54
|
172 |
if (!callback) return
|
info@54
|
173 |
|
info@54
|
174 |
doAnimate ?
|
info@54
|
175 |
this.$backdrop
|
info@54
|
176 |
.one($.support.transition.end, callback)
|
info@54
|
177 |
.emulateTransitionEnd(150) :
|
info@54
|
178 |
callback()
|
info@54
|
179 |
|
info@54
|
180 |
} else if (!this.isShown && this.$backdrop) {
|
info@54
|
181 |
this.$backdrop.removeClass('in')
|
info@54
|
182 |
|
info@54
|
183 |
$.support.transition && this.$element.hasClass('fade')?
|
info@54
|
184 |
this.$backdrop
|
info@54
|
185 |
.one($.support.transition.end, callback)
|
info@54
|
186 |
.emulateTransitionEnd(150) :
|
info@54
|
187 |
callback()
|
info@54
|
188 |
|
info@54
|
189 |
} else if (callback) {
|
info@54
|
190 |
callback()
|
info@54
|
191 |
}
|
info@54
|
192 |
}
|
info@54
|
193 |
|
info@54
|
194 |
|
info@54
|
195 |
// MODAL PLUGIN DEFINITION
|
info@54
|
196 |
// =======================
|
info@54
|
197 |
|
info@54
|
198 |
var old = $.fn.modal
|
info@54
|
199 |
|
info@54
|
200 |
$.fn.modal = function (option, _relatedTarget) {
|
info@54
|
201 |
return this.each(function () {
|
info@54
|
202 |
var $this = $(this)
|
info@54
|
203 |
var data = $this.data('bs.modal')
|
info@54
|
204 |
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
info@54
|
205 |
|
info@54
|
206 |
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
|
info@54
|
207 |
if (typeof option == 'string') data[option](_relatedTarget)
|
info@54
|
208 |
else if (options.show) data.show(_relatedTarget)
|
info@54
|
209 |
})
|
info@54
|
210 |
}
|
info@54
|
211 |
|
info@54
|
212 |
$.fn.modal.Constructor = Modal
|
info@54
|
213 |
|
info@54
|
214 |
|
info@54
|
215 |
// MODAL NO CONFLICT
|
info@54
|
216 |
// =================
|
info@54
|
217 |
|
info@54
|
218 |
$.fn.modal.noConflict = function () {
|
info@54
|
219 |
$.fn.modal = old
|
info@54
|
220 |
return this
|
info@54
|
221 |
}
|
info@54
|
222 |
|
info@54
|
223 |
|
info@54
|
224 |
// MODAL DATA-API
|
info@54
|
225 |
// ==============
|
info@54
|
226 |
|
info@54
|
227 |
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
|
info@54
|
228 |
var $this = $(this)
|
info@54
|
229 |
var href = $this.attr('href')
|
info@54
|
230 |
var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
|
info@54
|
231 |
var option = $target.data('modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
|
info@54
|
232 |
|
info@54
|
233 |
e.preventDefault()
|
info@54
|
234 |
|
info@54
|
235 |
$target
|
info@54
|
236 |
.modal(option, this)
|
info@54
|
237 |
.one('hide', function () {
|
info@54
|
238 |
$this.is(':visible') && $this.focus()
|
info@54
|
239 |
})
|
info@54
|
240 |
})
|
info@54
|
241 |
|
info@54
|
242 |
$(document)
|
info@54
|
243 |
.on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
|
info@54
|
244 |
.on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
|
info@54
|
245 |
|
info@54
|
246 |
}(jQuery);
|