Skip to content
Snippets Groups Projects
Commit ade726ad authored by Thomas Müller's avatar Thomas Müller
Browse files

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

parent f950ce82
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,9 @@ $(document).ready(function() { ...@@ -56,6 +56,9 @@ $(document).ready(function() {
}; };
}); });
$('#directLink').focus(); $(document).on('click', '#directLink', function() {
$(this).focus();
$(this).select();
});
}); });
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment