86 lines
2.2 KiB
JavaScript
86 lines
2.2 KiB
JavaScript
/*
|
|
* Solo - A small and beautiful blogging system written in Java.
|
|
* Copyright (c) 2010-2019, b3log.org & hacpai.com
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
!function ($) {
|
|
|
|
"use strict"; // jshint ;_;
|
|
|
|
|
|
/* ALERT CLASS DEFINITION
|
|
* ====================== */
|
|
|
|
var dismiss = '[data-dismiss="alert"]'
|
|
, Alert = function (el) {
|
|
$(el).on('click', dismiss, this.close)
|
|
}
|
|
|
|
Alert.prototype.close = function (e) {
|
|
var $this = $(this)
|
|
, selector = $this.attr('data-target')
|
|
, $parent
|
|
|
|
if (!selector) {
|
|
selector = $this.attr('href')
|
|
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
|
}
|
|
|
|
$parent = $(selector)
|
|
|
|
e && e.preventDefault()
|
|
|
|
$parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent())
|
|
|
|
$parent.trigger(e = $.Event('close'))
|
|
|
|
if (e.isDefaultPrevented()) return
|
|
|
|
$parent.removeClass('in')
|
|
|
|
function removeElement() {
|
|
$parent
|
|
.trigger('closed')
|
|
.remove()
|
|
}
|
|
|
|
$.support.transition && $parent.hasClass('fade') ?
|
|
$parent.on($.support.transition.end, removeElement) :
|
|
removeElement()
|
|
}
|
|
|
|
|
|
/* ALERT PLUGIN DEFINITION
|
|
* ======================= */
|
|
|
|
$.fn.alert = function (option) {
|
|
return this.each(function () {
|
|
var $this = $(this)
|
|
, data = $this.data('alert')
|
|
if (!data) $this.data('alert', (data = new Alert(this)))
|
|
if (typeof option == 'string') data[option].call($this)
|
|
})
|
|
}
|
|
|
|
$.fn.alert.Constructor = Alert
|
|
|
|
|
|
/* ALERT DATA-API
|
|
* ============== */
|
|
|
|
$(document).on('click.alert.data-api', dismiss, Alert.prototype.close)
|
|
|
|
}(window.jQuery); |