mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
css selectors never have a : before []
This commit is contained in:
parent
6b1843d91b
commit
cda58ae3df
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue