Dirty Solution will include the following in application.js
$(document).on("page:change", function() { $(".navbar .dropdown").hover((function() { $(this).find(".dropdown-menu").first().stop(true, true).delay(150).slideDown(); }), function() { $(this).find(".dropdown-menu").first().stop(true, true).delay(50).slideUp(); }); });
Remember this is change not load
kevincobain2000
source share