diff options
| author | Johann-S <[email protected]> | 2018-03-11 16:18:56 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-02-20 22:05:45 +0200 |
| commit | 7eddee286eb76da4d057a59706e4c512206dab45 (patch) | |
| tree | 5319cd291c015fcec49e2af0cb1c890d0d966927 /js/src/util.js | |
| parent | 0263d1742ce8ad25f0f2de30beebae69b2f55f10 (diff) | |
| download | bootstrap-7eddee286eb76da4d057a59706e4c512206dab45.tar.xz bootstrap-7eddee286eb76da4d057a59706e4c512206dab45.zip | |
remove old references to jquery and some fixes
Diffstat (limited to 'js/src/util.js')
| -rw-r--r-- | js/src/util.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/src/util.js b/js/src/util.js index 667f46076..78f5fe3fb 100644 --- a/js/src/util.js +++ b/js/src/util.js @@ -69,8 +69,8 @@ const Util = { } // Get transition-duration of the element - let transitionDuration = element.style.transitionDuration - let transitionDelay = element.style.transitionDelay + let transitionDuration = window.getComputedStyle(element).transitionDuration + let transitionDelay = window.getComputedStyle(element).transitionDelay const floatTransitionDuration = parseFloat(transitionDuration) const floatTransitionDelay = parseFloat(transitionDelay) @@ -92,7 +92,7 @@ const Util = { }, triggerTransitionEnd(element) { - EventHandler.trigger(element, Util.TRANSITION_END) + element.dispatchEvent(new Event(Util.TRANSITION_END)) }, // TODO: Remove in v5 |
