Commit be2bc593 by Bence Dányi

webui: fix a clickhandlers

parent a04acaea
......@@ -9,8 +9,8 @@ $(function() {
$(this).next('.details').slideDown(700);
}
})
$('a').click(function(e) {
e.stopPropagation();
$('a[href=#]').click(function(e) {
e.preventDefault();
});
$('.host-toggle').click(function(e){
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