Results 20 comments of Thomas Uher

the windows plugin is for the cordova platform "windows" covering microsoft universal apps, which runs on WP8.1+ and Win8.1+. The "old" cordova "wp8" platform is not supported.

I agree that this is a problem. It should be handled according to the W3C recommendations, like the system browser does.

> You could use `cordova-plugin-camera`'s `window.navigator.camera.getPicture` to trigger the right options on android. This method will let you choose your destination using https://github.com/apache/cordova-plugin-camera#cameradestinationtype--enum. > > Technically add an onClick listener...

It just tested it with Android 10 if you set targetSdk to 28 in `config.xml` ``` ``` and it worked. I have not yet evaluated if lowering the targetSdk to...

Thank you for your input and your thoughts. I agree that `filters` should be of the same type in JS and Python if possible. It haven't been into anycluster for...

The same layout came to my mind when reviewing the pull request - your suggested layout would be great

Thanks for sharing your thoughts. I am willing to add backwards compatibility making it pass the current tests. I have no deeper insight into the tests of konva.js yet and...

the suggested format is now implemented

Thanks for bringing attention to this. I tried what you described in Apple maps and it worked as you described. I will implement support for multiple taps. eg ``` const...

Meanwhile, you could try something like the following approach: ``` var TAP_ACTIVE = false; function onTap(event){ TAP_ACTIVE = true; setTimeout(function(){ TAP_ACTIVE = false; }, 500); } pointerListener.on("tap", onTap); function onPan(event){...