Commit be2bc593 by Bence Dányi

webui: fix a clickhandlers

parent a04acaea
...@@ -9,8 +9,8 @@ $(function() { ...@@ -9,8 +9,8 @@ $(function() {
$(this).next('.details').slideDown(700); $(this).next('.details').slideDown(700);
} }
}) })
$('a').click(function(e) { $('a[href=#]').click(function(e) {
e.stopPropagation(); e.preventDefault();
}); });
$('.host-toggle').click(function(e){ $('.host-toggle').click(function(e){
e.preventDefault(); e.preventDefault();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment