I am using the jquery-ui-1.8.16.custom.min.js lib… to toggle my
sidebar-views
======
…
$(’.toggle-view li’).click(function () {
var text = $(this).children(‘p’);
if (text.is(’:hidden’)) {
text.slideDown(‘fast’);
$(this).children(‘h4’).addClass(‘active’);
} else {
text.slideUp(‘fast’);
$(this).children(‘h4’).removeClass(‘active’);
}
});
…
I have a strange behavior : without any pre-compilation ( rake
assets:clean ) it runs well… toggle is good
then I pre-compile locally my assets before deployment
running again in development … toggle doesn’t work anymore … it
slideDown and slideUp immediately
if I clear again the assets : rake assets:clean , then correct
toggle behavior is good again …
what could happen when I run : bundle exec rake
assets:precompile:all to make this happen ?
thanks for your feedback