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

This commit is contained in:
Thomas Müller 2014-01-23 01:08:42 +01:00
parent f950ce82ae
commit ade726ad32

View file

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