Merge pull request #21589 from owncloud/mobile-webDAV-select
webDAV select bug fixed
This commit is contained in:
commit
05f9b40419
1 changed files with 3 additions and 2 deletions
|
@ -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'});
|
||||
|
|
Loading…
Reference in a new issue