info@54
|
1 |
/* ========================================================================
|
info@54
|
2 |
* Bootstrap: alert.js v3.0.3
|
info@54
|
3 |
* http://getbootstrap.com/javascript/#alerts
|
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 |
// ALERT CLASS DEFINITION
|
info@54
|
24 |
// ======================
|
info@54
|
25 |
|
info@54
|
26 |
var dismiss = '[data-dismiss="alert"]'
|
info@54
|
27 |
var Alert = function (el) {
|
info@54
|
28 |
$(el).on('click', dismiss, this.close)
|
info@54
|
29 |
}
|
info@54
|
30 |
|
info@54
|
31 |
Alert.prototype.close = function (e) {
|
info@54
|
32 |
var $this = $(this)
|
info@54
|
33 |
var selector = $this.attr('data-target')
|
info@54
|
34 |
|
info@54
|
35 |
if (!selector) {
|
info@54
|
36 |
selector = $this.attr('href')
|
info@54
|
37 |
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
info@54
|
38 |
}
|
info@54
|
39 |
|
info@54
|
40 |
var $parent = $(selector)
|
info@54
|
41 |
|
info@54
|
42 |
if (e) e.preventDefault()
|
info@54
|
43 |
|
info@54
|
44 |
if (!$parent.length) {
|
info@54
|
45 |
$parent = $this.hasClass('alert') ? $this : $this.parent()
|
info@54
|
46 |
}
|
info@54
|
47 |
|
info@54
|
48 |
$parent.trigger(e = $.Event('close.bs.alert'))
|
info@54
|
49 |
|
info@54
|
50 |
if (e.isDefaultPrevented()) return
|
info@54
|
51 |
|
info@54
|
52 |
$parent.removeClass('in')
|
info@54
|
53 |
|
info@54
|
54 |
function removeElement() {
|
info@54
|
55 |
$parent.trigger('closed.bs.alert').remove()
|
info@54
|
56 |
}
|
info@54
|
57 |
|
info@54
|
58 |
$.support.transition && $parent.hasClass('fade') ?
|
info@54
|
59 |
$parent
|
info@54
|
60 |
.one($.support.transition.end, removeElement)
|
info@54
|
61 |
.emulateTransitionEnd(150) :
|
info@54
|
62 |
removeElement()
|
info@54
|
63 |
}
|
info@54
|
64 |
|
info@54
|
65 |
|
info@54
|
66 |
// ALERT PLUGIN DEFINITION
|
info@54
|
67 |
// =======================
|
info@54
|
68 |
|
info@54
|
69 |
var old = $.fn.alert
|
info@54
|
70 |
|
info@54
|
71 |
$.fn.alert = function (option) {
|
info@54
|
72 |
return this.each(function () {
|
info@54
|
73 |
var $this = $(this)
|
info@54
|
74 |
var data = $this.data('bs.alert')
|
info@54
|
75 |
|
info@54
|
76 |
if (!data) $this.data('bs.alert', (data = new Alert(this)))
|
info@54
|
77 |
if (typeof option == 'string') data[option].call($this)
|
info@54
|
78 |
})
|
info@54
|
79 |
}
|
info@54
|
80 |
|
info@54
|
81 |
$.fn.alert.Constructor = Alert
|
info@54
|
82 |
|
info@54
|
83 |
|
info@54
|
84 |
// ALERT NO CONFLICT
|
info@54
|
85 |
// =================
|
info@54
|
86 |
|
info@54
|
87 |
$.fn.alert.noConflict = function () {
|
info@54
|
88 |
$.fn.alert = old
|
info@54
|
89 |
return this
|
info@54
|
90 |
}
|
info@54
|
91 |
|
info@54
|
92 |
|
info@54
|
93 |
// ALERT DATA-API
|
info@54
|
94 |
// ==============
|
info@54
|
95 |
|
info@54
|
96 |
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
info@54
|
97 |
|
info@54
|
98 |
}(jQuery);
|