2013-05-21 22:30:33 -04:00
|
|
|
/* ========================================================================
|
2013-05-16 14:06:30 -04:00
|
|
|
* Bootstrap: transition.js v3.0.0
|
2013-07-25 15:24:13 -04:00
|
|
|
* http://twbs.github.com/bootstrap/javascript.html#transitions
|
2013-05-21 22:30:33 -04:00
|
|
|
* ========================================================================
|
2013-05-16 14:06:30 -04:00
|
|
|
* Copyright 2013 Twitter, Inc.
|
2011-12-14 21:45:33 -05:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2013-05-21 22:30:33 -04:00
|
|
|
* ======================================================================== */
|
2011-12-14 21:45:33 -05:00
|
|
|
|
2012-03-24 21:59:04 -04:00
|
|
|
|
2013-05-21 22:30:33 -04:00
|
|
|
+function ($) { "use strict";
|
2011-12-14 21:45:33 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
|
|
|
// ============================================================
|
2011-12-14 21:45:33 -05:00
|
|
|
|
2013-05-16 14:06:30 -04:00
|
|
|
function transitionEnd() {
|
2013-05-16 20:18:15 -04:00
|
|
|
var el = document.createElement('bootstrap')
|
2012-03-29 16:51:23 -04:00
|
|
|
|
2013-05-16 14:06:30 -04:00
|
|
|
var transEndEventNames = {
|
2013-05-16 20:18:15 -04:00
|
|
|
'WebkitTransition' : 'webkitTransitionEnd'
|
|
|
|
, 'MozTransition' : 'transitionend'
|
|
|
|
, 'OTransition' : 'oTransitionEnd otransitionend'
|
|
|
|
, 'transition' : 'transitionend'
|
|
|
|
}
|
2012-03-29 15:35:06 -04:00
|
|
|
|
2013-05-16 14:06:30 -04:00
|
|
|
for (var name in transEndEventNames) {
|
|
|
|
if (el.style[name] !== undefined) {
|
2013-05-16 20:18:15 -04:00
|
|
|
return { end: transEndEventNames[name] }
|
2012-01-17 13:32:25 -05:00
|
|
|
}
|
2013-05-16 14:06:30 -04:00
|
|
|
}
|
|
|
|
}
|
2012-03-29 16:51:23 -04:00
|
|
|
|
2013-07-23 21:44:08 -04:00
|
|
|
// http://blog.alexmaccaw.com/css-transitions
|
|
|
|
$.fn.emulateTransitionEnd = function (duration) {
|
2013-08-17 23:28:58 -04:00
|
|
|
var called = false, $el = this
|
2013-07-29 08:23:01 -04:00
|
|
|
$(this).one($.support.transition.end, function () { called = true })
|
|
|
|
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
2013-07-23 21:44:08 -04:00
|
|
|
setTimeout(callback, duration)
|
2013-07-26 23:34:39 -04:00
|
|
|
return this
|
2013-07-23 21:44:08 -04:00
|
|
|
}
|
|
|
|
|
2013-05-16 14:06:30 -04:00
|
|
|
$(function () {
|
2013-05-16 20:18:15 -04:00
|
|
|
$.support.transition = transitionEnd()
|
|
|
|
})
|
2012-02-13 21:41:02 -05:00
|
|
|
|
2013-04-23 03:34:27 -04:00
|
|
|
}(window.jQuery);
|