58 lines
1.6 KiB
JavaScript
58 lines
1.6 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 ;_;
|
|
|
|
|
|
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
|
|
* ======================================================= */
|
|
|
|
$(function () {
|
|
|
|
$.support.transition = (function () {
|
|
|
|
var transitionEnd = (function () {
|
|
|
|
var el = document.createElement('bootstrap')
|
|
, transEndEventNames = {
|
|
'WebkitTransition' : 'webkitTransitionEnd'
|
|
, 'MozTransition' : 'transitionend'
|
|
, 'OTransition' : 'oTransitionEnd otransitionend'
|
|
, 'transition' : 'transitionend'
|
|
}
|
|
, name
|
|
|
|
for (name in transEndEventNames){
|
|
if (el.style[name] !== undefined) {
|
|
return transEndEventNames[name]
|
|
}
|
|
}
|
|
|
|
}())
|
|
|
|
return transitionEnd && {
|
|
end: transitionEnd
|
|
}
|
|
|
|
})()
|
|
|
|
})
|
|
|
|
}(window.jQuery); |