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");
});
});