diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-09-19 10:59:45 -0700 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-09-19 10:59:45 -0700 |
commit | f9549a446547f297dcdf4617c2d0fdab2938e74a (patch) | |
tree | f6eb87d4a115587bf86c96d9c326311100687551 | |
parent | 09cfebe93653f9168bdfb8e480a47c50a28868ea (diff) | |
parent | cda58ae3dfc938edff0bee048f54a48f3e6451d7 (diff) | |
download | nextcloud-server-f9549a446547f297dcdf4617c2d0fdab2938e74a.tar.gz nextcloud-server-f9549a446547f297dcdf4617c2d0fdab2938e74a.zip |
Merge pull request #4908 from owncloud/fix_css_selector
css selectors never have a : before []
-rw-r--r-- | core/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |