Fix checkbox toggling, add nav tabs, fix broken domain quota when adding a new domain

This commit is contained in:
andryyy
2017-04-27 08:44:21 +02:00
parent 5586bd2bb5
commit e26304f6d0
5 changed files with 120 additions and 97 deletions

View File

@@ -329,9 +329,14 @@ $(document).ready(function() {
});
}
});
$("tr").on('click',function(event) {
var checkbox = $(this).find(':checkbox');
checkbox.trigger('click');
$("tr").on('click',function(e) {
if (e.target.type == "checkbox") {
e.stopPropagation();
} else {
var $checkbox = $(this).find(':checkbox');
var checkbox = $(this).find(':checkbox');
checkbox.trigger('click');
}
});
});
}