webDAV select bug fixed

This commit is contained in:
Julian Müller 2016-01-10 18:14:02 +01:00 committed by Roeland Jago Douma
parent 77a8085f84
commit 0249911536
1 changed files with 3 additions and 2 deletions

View File

@ -271,8 +271,9 @@
} }
$('#webdavurl').on('click', function () { $('#webdavurl').on('click touchstart', function () {
$('#webdavurl').select(); this.focus();
this.setSelectionRange(0, this.value.length);
}); });
$('#upload').tooltip({placement:'right'}); $('#upload').tooltip({placement:'right'});