Merge pull request #4908 from owncloud/fix_css_selector

css selectors never have a : before []
This commit is contained in:
Bart Visscher 2013-09-19 10:59:45 -07:00
commit f9549a4465
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 {