focus link text only on click in the input field - closes #6817
This commit is contained in:
parent
f950ce82ae
commit
ade726ad32
1 changed files with 4 additions and 1 deletions
|
@ -56,6 +56,9 @@ $(document).ready(function() {
|
|||
};
|
||||
});
|
||||
|
||||
$('#directLink').focus();
|
||||
$(document).on('click', '#directLink', function() {
|
||||
$(this).focus();
|
||||
$(this).select();
|
||||
});
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue