Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 55437b1

Browse files
themikeleepkozlowski-opensource
authored andcommittedApr 2, 2013
fix(collapse): remove reference to msTransition for IE10
In IE10 msTransition exists but msTransitionEnd never fires. IE10 does however support standard transitionend. Since IE<10 does not support transitions this line can be removed entirely. This has already been done in Twitter Bootstrap. Reference here: twbs/bootstrap#4166
1 parent c2645f4 commit 55437b1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎src/transition/transition.js

-2
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,12 @@ angular.module('ui.bootstrap.transition', [])
6161
'WebkitTransition': 'webkitTransitionEnd',
6262
'MozTransition': 'transitionend',
6363
'OTransition': 'oTransitionEnd',
64-
'msTransition': 'MSTransitionEnd',
6564
'transition': 'transitionend'
6665
};
6766
var animationEndEventNames = {
6867
'WebkitTransition': 'webkitAnimationEnd',
6968
'MozTransition': 'animationend',
7069
'OTransition': 'oAnimationEnd',
71-
'msTransition': 'MSAnimationEnd',
7270
'transition': 'animationend'
7371
};
7472
function findEndEventName(endEventNames) {

0 commit comments

Comments
 (0)
This repository has been archived.