Merge pull request #4908 from owncloud/fix_css_selector

css selectors never have a : before []
remotes/origin/stable6
Bart Visscher 13 years ago
commit f9549a4465
  1. 2
      core/js/share.js

@ -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…
Cancel
Save