Don't focus the text area on touch devices to avoid flashing the keyboard
Currently the keyboard slide out & hides again quickly.
This commit is contained in:
parent
b6b9052c37
commit
8255553e97
1 changed files with 6 additions and 3 deletions
|
@ -46,9 +46,12 @@ $(document).ready(function () {
|
|||
}
|
||||
});
|
||||
|
||||
map.on("popupopen", function (e) {
|
||||
$(e.popup._container).find(".comment").focus();
|
||||
});
|
||||
// Don't focus the text area on touch devices to avoid flashing the keyboard
|
||||
if (!('ontouchstart' in document.documentElement)) {
|
||||
map.on("popupopen", function (e) {
|
||||
$(e.popup._container).find(".comment").focus();
|
||||
});
|
||||
}
|
||||
|
||||
map.on("popupclose", function (e) {
|
||||
if (newNote && e.popup == newNote._popup) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue