From: Jörn Friedrich Dreyer Date: Thu, 19 Sep 2013 08:14:07 +0000 (+0200) Subject: css selectors never have a : before [] X-Git-Tag: v6.0.0alpha2~158^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cda58ae3dfc938edff0bee048f54a48f3e6451d7;p=nextcloud-server.git css selectors never have a : before [] --- diff --git a/core/js/share.js b/core/js/share.js index 5d34faf8a5d..5b93dd30740 100644 --- a/core/js/share.js +++ b/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 {