diff --git a/core/modules/macros/list/listviews/classic.js b/core/modules/macros/list/listviews/classic.js index a82baa7d3..ca5d15a2b 100644 --- a/core/modules/macros/list/listviews/classic.js +++ b/core/modules/macros/list/listviews/classic.js @@ -51,7 +51,7 @@ ClassicListView.prototype.remove = function(index) { targetElement.parentNode.insertBefore(wrapperElement,targetElement); wrapperElement.appendChild(targetElement); // Attach an event handler for the end of the transition - wrapperElement.addEventListener($tw.browser.transitionEnd,function(event) { + wrapperElement.addEventListener($tw.utils.convertEventName("transitionEnd"),function(event) { if(wrapperElement.parentNode) { wrapperElement.parentNode.removeChild(wrapperElement); }