]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Clean up transitionEnd properties. (#24511)
authorXhmikosR <xhmikosr@gmail.com>
Mon, 23 Oct 2017 07:45:27 +0000 (10:45 +0300)
committerGitHub <noreply@github.com>
Mon, 23 Oct 2017 07:45:27 +0000 (10:45 +0300)
We don't support Opera 12, and Firefox's property was the unprefixed one.

js/src/util.js

index e3e77979319a937cf9fab9b7b5d23576ff2f9393..1fa55494ea9a213168c54c4edba1cad95dfc0109 100644 (file)
@@ -22,8 +22,6 @@ const Util = (() => {
 
   const TransitionEndEvent = {
     WebkitTransition : 'webkitTransitionEnd',
-    MozTransition    : 'transitionend',
-    OTransition      : 'oTransitionEnd otransitionend',
     transition       : 'transitionend'
   }