Commit 6d16d634 by Dányi Bence

webui: prevent default actions for dummy links

parent 4d69e3f9
...@@ -36,20 +36,25 @@ $(function() { ...@@ -36,20 +36,25 @@ $(function() {
$(this).next('.details').slideDown(700); $(this).next('.details').slideDown(700);
} }
} }
$('.delete-template-button').click(function() { $('.delete-template-button').click(function(e) {
e.preventDefault(); e.stopPropagation();
delete_template_confirm($(this).data('id'), $(this).data('name')); delete_template_confirm($(this).data('id'), $(this).data('name'));
}); });
$('.wm .summary').unbind('click').click(toggleDetails); $('.wm .summary').unbind('click').click(toggleDetails);
$('.stop-vm-button').click(function() { $('.stop-vm-button').click(function(e) {
e.preventDefault(); e.stopPropagation();
stop_vm($(this).data('id'), $(this).data('name')); stop_vm($(this).data('id'), $(this).data('name'));
}); });
$('.resume-vm-button').click(function() { $('.resume-vm-button').click(function(e) {
e.preventDefault(); e.stopPropagation();
manage_vm($(this).data('id'), "resume"); manage_vm($(this).data('id'), "resume");
}); });
$('.delete-vm-button').click(function() { $('.delete-vm-button').click(function(e) {
e.preventDefault(); e.stopPropagation();
delete_vm($(this).data('id'), $(this).data('name')); delete_vm($(this).data('id'), $(this).data('name'));
}); });
$('.restart-vm-button').click(function() { $('.restart-vm-button').click(function(e) {
e.preventDefault(); e.stopPropagation();
restart_vm($(this).data('id'), $(this).data('name')); restart_vm($(this).data('id'), $(this).data('name'));
}); });
$('#new-wm-button').click(function() { $('#new-wm-button').click(function() {
......
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