focus link text only on click in the input field - closes #6817

remotes/origin/ldap_group_count
Thomas Müller 11 years ago
parent f950ce82ae
commit ade726ad32
  1. 5
      apps/files_sharing/js/public.js

@ -56,6 +56,9 @@ $(document).ready(function() {
};
});
$('#directLink').focus();
$(document).on('click', '#directLink', function() {
$(this).focus();
$(this).select();
});
});

Loading…
Cancel
Save