Philzen
Philzen
Null values are not handled correctly, e.g. ``` measurement('Speed').convert(null).from('km/h').to('m/s'); // = 0 measurement('Speed').convert(undefined).from('km/h').to('m/s'); // = NaN measurement('Temperature').convert(null).from('c').to('k'); // = 273.15 measurement('Temperature').convert(null).from('f').to('c'); // = -17.77777777777778 measurement('Temperature').convert(undefined).from('c').to('k'); // = NaN ``` Internally...
With the [github release page](https://github.com/Philzen/WebView-MultiTouch-Polyfill/releases) providing file downloads and now being completely set up, the repository can be cleaned of any `*.jar`, `*.apk` or files that were committed in the...
To finally step forward towards #8 readiness and also critically review the code: **Required Tests** - emulating JSON packages for various use cases - one touch gesture moving one object,...
In order to compile and run successfully on 2.1 devices, an alternative for `MotionEvent.getActionIndex()` will be needed.
As it sucks not seeing wiki updates (specifically the tested device matrix) although watching the repository it may be better to commit some (i.e. device matrix) as `.md` files and...
As per http://smustalks.appspot.com/cross-device-sfhtml5-12/#56, it sounds good to a. measure and b. install a facility to limit the firing rate of touch updates, especially when more than two fingers are touching...
Touches generated by wmp can be off if either a. [JAVA] the webview has a non-default zoom for some reason (need to check) or b. [JS] the app has set...
When testing on a Galaxy Mini (GT-S5570) a freeze of animation was observed as the second finger moves on the screen. Debug output shows the touchdown event is missed. Theoretically...
From [Issue 1](https://github.com/Philzen/WebView-MultiTouch-Polyfill/issues/1#issuecomment-6496672): > Hello Philzen, > > i think we are developing a solution approach for the same problem in the last days/weeks. What did you think about to...