From 7eddee286eb76da4d057a59706e4c512206dab45 Mon Sep 17 00:00:00 2001 From: Johann-S Date: Sun, 11 Mar 2018 16:18:56 +0100 Subject: remove old references to jquery and some fixes --- js/src/util.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/src/util.js') 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 -- cgit v1.2.3