You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*
* Cross-Browser (IE9+) Listen to animation and fire a callback function when completed
* @param object element : DOM Element
* @param string type : Type of event to watch
* @param function callback : Function to be Called after complete
*/
animationListener : function(element, type, callback){
var pfx = ["webkit", "moz", "MS", "o", ""]; //All prefix that must be listened
for (var p = 0; p < pfx.length; p++) {
if (!pfx[p]) type = type.toLowerCase();
element.addEventListener(pfx[p]+type, callback, false);
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: