css selectors never have a : before []

This commit is contained in:
Jörn Friedrich Dreyer 2013-09-19 10:14:07 +02:00
parent 6b1843d91b
commit cda58ae3df
1 changed files with 1 additions and 1 deletions

View File

@ -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 {