Merge pull request #21589 from owncloud/mobile-webDAV-select

webDAV select bug fixed
This commit is contained in:
Thomas Müller 2016-01-11 11:31:33 +01:00
commit 05f9b40419
1 changed files with 3 additions and 2 deletions

View File

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