Disable auto-open of dropdown menus on hover

This commit is contained in:
2016-11-04 11:22:44 +01:00
parent 9ad979c357
commit d9de9700e3

View File

@@ -166,9 +166,3 @@ script.
{% endif %}
$('.js-help').openModalUrl('Help', "{{ url_for('attract.help', project_url=project.url) }}");
$('.dropdown').hover(function(){
$(this).addClass('open');
}, function(){
$(this).removeClass('open');
});