summaryrefslogtreecommitdiff
path: root/assets/js/bootstrap-transition.js
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-08-05 22:21:12 -0400
committerThomas Park <thomas@thomaspark.me>2012-08-05 22:21:12 -0400
commit7e9ce719e51e36404b68bd4de86ae8546fbe0f9e (patch)
treee9ac6537a53d4d1d7f30f8e744444fe6d094122c /assets/js/bootstrap-transition.js
parentdabbc85d4fae560b61ba6e765f5246aca031b38b (diff)
index: updated to 2.0.4 and minified
Diffstat (limited to 'assets/js/bootstrap-transition.js')
-rwxr-xr-xassets/js/bootstrap-transition.js61
1 files changed, 0 insertions, 61 deletions
diff --git a/assets/js/bootstrap-transition.js b/assets/js/bootstrap-transition.js
deleted file mode 100755
index 7e29b2fd..00000000
--- a/assets/js/bootstrap-transition.js
+++ /dev/null
@@ -1,61 +0,0 @@
-/* ===================================================
- * bootstrap-transition.js v2.0.3
- * http://twitter.github.com/bootstrap/javascript.html#transitions
- * ===================================================
- * Copyright 2012 Twitter, Inc.
- *
- * 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.
- * ========================================================== */
-
-
-!function ($) {
-
- $(function () {
-
- "use strict"; // jshint ;_;
-
-
- /* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
- * ======================================================= */
-
- $.support.transition = (function () {
-
- var transitionEnd = (function () {
-
- var el = document.createElement('bootstrap')
- , transEndEventNames = {
- 'WebkitTransition' : 'webkitTransitionEnd'
- , 'MozTransition' : 'transitionend'
- , 'OTransition' : 'oTransitionEnd'
- , 'msTransition' : 'MSTransitionEnd'
- , 'transition' : 'transitionend'
- }
- , name
-
- for (name in transEndEventNames){
- if (el.style[name] !== undefined) {
- return transEndEventNames[name]
- }
- }
-
- }())
-
- return transitionEnd && {
- end: transitionEnd
- }
-
- })()
-
- })
-
-}(window.jQuery); \ No newline at end of file