Options afterShow, afterHide doesn't work at all.
This is my init code. Nothing has been changed in src code.
$('.dropdown').dropit({
beforeShow: function(){
$('.dropdown-submenu').addClass('animated animDrop')
},
afterShow: function(){
$('.dropdown-submenu').removeClass('animated animDrop')
},
beforeHide: function(){
$('.dropdown-submenu').addClass('animated zoomOut')
},
afterHide: function(){
$('.dropdown-submenu').removeClass('animated zoomOut')
},
});
If i comment out / delete afterHide & afterShow - it won't give me expected effect cause it only takes first applied class (animated animDrop)
Options
afterShow,afterHidedoesn't work at all.This is my init code. Nothing has been changed in src code.
If i comment out / delete afterHide & afterShow - it won't give me expected effect cause it only takes first applied class (
animated animDrop)