From 2a0cf0f1312ff9edf96bed047758eb6e295b18ff Mon Sep 17 00:00:00 2001
From: Jonathan Sampson <jjdsampson@gmail.com>
Date: Tue, 24 Jul 2012 01:50:38 -0400
Subject: [PATCH] IE10 uses 'transition' and 'transitionend'

msTransition, while supported in IE, should be ignored in favor of the
unprefixed property. Additionally, MSTransitionEnd should also be
ignored in favor of the unprefixed event transitionend.

Current unit test requires no attention in light of this change.

MSDN:
http://msdn.microsoft.com/en-us/library/ie/hh673535(v=vs.85).aspx#transitions_dom_events
---
 js/bootstrap-transition.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/js/bootstrap-transition.js b/js/bootstrap-transition.js
index 0c37ebb187..c5b2674f37 100644
--- a/js/bootstrap-transition.js
+++ b/js/bootstrap-transition.js
@@ -37,7 +37,6 @@
                'WebkitTransition' : 'webkitTransitionEnd'
             ,  'MozTransition'    : 'transitionend'
             ,  'OTransition'      : 'oTransitionEnd otransitionend'
-            ,  'msTransition'     : 'MSTransitionEnd'
             ,  'transition'       : 'transitionend'
             }
           , name
-- 
GitLab