exhtml
6/8/2017 - 9:20 AM

Detect when animation or transition end (check note animate.css también...)

Detect when animation or transition end (check note animate.css también...)


// ANIMATION END
messageForm.addClass("is-animated").one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend", function () {
    messageForm.removeClass("is-animated");
});

// TRANSITION END
selectParentDropdownToggle.on('click', function(){
    selectParentDropdownMenu.one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(e) {
        selectDocumentTypes.select2("open");
    });
});