From 55437b163f17caf8437c9ff66cf3193050f0d352 Mon Sep 17 00:00:00 2001
From: themikelee <mikelee@themikelee.com>
Date: Fri, 22 Mar 2013 21:58:42 -0300
Subject: [PATCH] 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: https://github.com/twitter/bootstrap/pull/4166
---
 src/transition/transition.js | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/transition/transition.js b/src/transition/transition.js
index 84f382b2a0..c23d3f76f7 100644
--- a/src/transition/transition.js
+++ b/src/transition/transition.js
@@ -61,14 +61,12 @@ angular.module('ui.bootstrap.transition', [])
     'WebkitTransition': 'webkitTransitionEnd',
     'MozTransition': 'transitionend',
     'OTransition': 'oTransitionEnd',
-    'msTransition': 'MSTransitionEnd',
     'transition': 'transitionend'
   };
   var animationEndEventNames = {
     'WebkitTransition': 'webkitAnimationEnd',
     'MozTransition': 'animationend',
     'OTransition': 'oAnimationEnd',
-    'msTransition': 'MSAnimationEnd',
     'transition': 'animationend'
   };
   function findEndEventName(endEventNames) {