From c8945679872a0708eb67a477a99a65d508c84cb0 Mon Sep 17 00:00:00 2001 From: Maxime Quandalle Date: Fri, 12 Jun 2015 13:59:39 +0200 Subject: Work on the card activities and comments This commit also introduces a new CSSEvents object that is used to abstract vendor specifics events related to CSS transitions and animations. Fixes #183. Fixes #179. --- client/components/main/popup.js | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'client/components/main/popup.js') diff --git a/client/components/main/popup.js b/client/components/main/popup.js index 8cb12dd0..5fc4e979 100644 --- a/client/components/main/popup.js +++ b/client/components/main/popup.js @@ -1,22 +1,3 @@ -// XXX This event list must be abstracted somewhere else. -function whichTransitionEvent() { - var t; - var el = document.createElement('fakeelement'); - var transitions = { - transition:'transitionend', - OTransition:'oTransitionEnd', - MozTransition:'transitionend', - WebkitTransition:'webkitTransitionEnd' - }; - - for (t in transitions) { - if (el.style[t] !== undefined) { - return transitions[t]; - } - } -} -var transitionEvent = whichTransitionEvent(); - Popup.template.events({ 'click .js-back-view': function() { Popup.back(); @@ -50,7 +31,7 @@ Popup.template.onRendered(function() { container._uihooks = { removeElement: function(node) { $(node).addClass('no-height'); - $(container).one(transitionEvent, function() { + $(container).one(CSSEvents.transitionend, function() { node.parentNode.removeChild(node); }); } -- cgit v1.2.3-1-g7c22