diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-07 11:34:46 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-07 11:34:46 +0200 |
commit | 8c63f91ba1142b0ea921f5fb39c0420ed9c4763f (patch) | |
tree | f0f6a61cef3f2b0ef8413f4d691c84a8cc26443e /core | |
parent | 6f617bdec7dedf408713b11079d077e919b78abf (diff) | |
download | nextcloud-server-8c63f91ba1142b0ea921f5fb39c0420ed9c4763f.tar.gz nextcloud-server-8c63f91ba1142b0ea921f5fb39c0420ed9c4763f.zip |
Fix autofocus
fix #4465
fix #4941
backport of 4803 to stable5
Diffstat (limited to 'core')
-rw-r--r-- | core/js/share.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/js/share.js b/core/js/share.js index 4664594e657..4fe510bb23d 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -233,6 +233,7 @@ OC.Share={ // } else { $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWith', search: search.term, itemShares: OC.Share.itemShares }, function(result) { if (result.status == 'success' && result.data.length > 0) { + $( "#shareWith" ).autocomplete( "option", "autoFocus", true ); response(result.data); } else { // Suggest sharing via email if valid email address @@ -240,6 +241,7 @@ OC.Share={ // if (pattern.test(search.term)) { // response([{label: t('core', 'Share via email:')+' '+search.term, value: {shareType: OC.Share.SHARE_TYPE_EMAIL, shareWith: search.term}}]); // } else { + $( "#shareWith" ).autocomplete( "option", "autoFocus", false ); response([t('core', 'No people found')]); // } } @@ -412,7 +414,7 @@ OC.Share={ dateFormat : 'dd-mm-yy' }); } -} +}; $(document).ready(function() { @@ -501,7 +503,7 @@ $(document).ready(function() { $(document).on('change', '#dropdown .permissions', function() { if ($(this).attr('name') == 'edit') { - var li = $(this).parent().parent() + var li = $(this).parent().parent(); var checkboxes = $('.permissions', li); var checked = $(this).is(':checked'); // Check/uncheck Create, Update, and Delete checkboxes if Edit is checked/unck |