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
On Android 2, in a scroller containing 2 inputs, when clicking the first input, I had the following behavior:
the second input get the default focus ring (orange outline)
when typing, the input updated is the first.
After some tests, I found out that in the 'EasyScroller.prototype.render' function, the translate3d part was used although not being supported in Android < 3.
Testing for the perspective property does not seem to be reliable enough.
As I'm using Modernizr, I end up replacing:
if (helperElem.style[perspectiveProperty] !== undef) {
by
if ( Modernizr.csstransforms3d ){
The text was updated successfully, but these errors were encountered:
On Android 2, in a scroller containing 2 inputs, when clicking the first input, I had the following behavior:
After some tests, I found out that in the 'EasyScroller.prototype.render' function, the translate3d part was used although not being supported in Android < 3.
Testing for the perspective property does not seem to be reliable enough.
As I'm using Modernizr, I end up replacing:
by
The text was updated successfully, but these errors were encountered: