Set cursor at the end of selection on focus for search input (compatible with Firefox)

This commit is contained in:
Frederic Guillot
2015-07-04 19:26:42 -04:00
parent 32ddfb3fba
commit 0a9ad08e9e
2 changed files with 7 additions and 5 deletions

View File

@@ -236,7 +236,9 @@ var Kanboard = (function() {
// Place cursor at the end when focusing on the search box
$(document).on("focus", "#form-search", function() {
$(this).val($(this).val());
if ($("#form-search")[0].setSelectionRange) {
$('#form-search')[0].setSelectionRange($('#form-search').val().length, $('#form-search').val().length);
}
});
// Filter helper for search