webDAV select bug fixed
This commit is contained in:
parent
77a8085f84
commit
0249911536
|
@ -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 New Issue