You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In section "Full Screen" press "Run Code" (We don't really care about a fullscreen modal, our case is a modal with inputs)
Feedback textarea got focused and an android keyboard appeared
Press close button
P.S.
My workaround is to edit file src/definitions/modules/modal.js (line 428)
( hideModal - $module.transition - onComplete )
add the code module.unbind.scrollLock();
The text was updated successfully, but these errors were encountered:
Steps
autofocus: false
), so an android keyboard appearsIf you close a keyboard (or e.g. blur an input) before closing the modal, the page would scroll normally
Expected Result
User should be able to scroll a page after closing a modal with inputs
Actual Result
User is unable to scroll a page after closing a modal with inputs
Version
2.4.2
Testcase
For a phone with 720x1280 screen resolution there is a testcase:
P.S.
My workaround is to edit file
src/definitions/modules/modal.js
(line 428)( hideModal - $module.transition - onComplete )
add the code
module.unbind.scrollLock();
The text was updated successfully, but these errors were encountered: