Skip to content
Snippets Groups Projects
Commit cda58ae3 authored by Jörn Friedrich Dreyer's avatar Jörn Friedrich Dreyer
Browse files

css selectors never have a : before []

parent 6b1843d9
No related branches found
No related tags found
No related merge requests found
......@@ -483,7 +483,7 @@ $(document).ready(function() {
if (!$('.cruds', this).is(':visible')) {
$('a', this).hide();
if (!$('input[name="edit"]', this).is(':checked')) {
$('input:[type=checkbox]', this).hide();
$('input[type="checkbox"]', this).hide();
$('label', this).hide();
}
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment