ray007

Results 119 comments of ray007

Is the `vue` version of `picker` even supposed to work? I'm either missing a lot of docs or things don't quite work yet with vue...

IE/Edge do not support this and other svg baseline attributes. And lie about it. Should probably mentioned as bug for their svg support...

Looking around I found I had a directory `C:\Users\\AppData\Roaming\npm\node_modules\.bin`. Removing this `.bin` directory (and a file `.package-lock.json` in the same directory), the update call without package name now works as...

Google does not like to grant `ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION`, my app was rejected because of that last week. No idea yet if it will work, but I'll try https://github.com/pierremacedo/nativescript-android-fs next.

So, no more accessing the Downloads folder on iOS? Does anyone have a workaround for this problem?

Not yet. I have an idea going with svg and foreignObject to canvas, but was hoping somebody else might already have needed this.

Not sure about how to codify this into a `Modernizr` rule, but the test should go like this: 1. add an element with attribute `style="background: conic-gradient(red, green, blue)"` to the...

Did a quick check with Chrome, Firefox and Edge (the old one), and ```javascript Modernizr.testAllProps("backgroundImage", "conic-gradient(red, blue)") ``` seems to do the right thing.

So at the end it may look like this: ```javascript define(['Modernizr', 'createElement'], function(Modernizr, createElement) { Modernizr.addTest('conicgradient', function() { return Modernizr.testAllProps("backgroundImage", "conic-gradient(red, blue)"); }); }); ```

I had hoped posting the code here would be enough. And that somebody would verify it. Will try to find some time...