Commit ee9e83c2 by Dányi Bence

webui: fix link event propagation

parent 59780689
......@@ -9,6 +9,9 @@ $(function() {
$(this).next('.details').slideDown(700);
}
})
$('a').click(function(e){
e.stopPropagation();
});
$('.delete-template').click(function(e) {
e.preventDefault();
e.stopPropagation();
......
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