Andrew Plummer

Results 205 comments of Andrew Plummer

Hi... thanks for the bug report... I had a look into this and it seems that there is a [bug with safari's implementation of clip-path](https://stackoverflow.com/questions/41860477/why-doesnt-css-clip-path-with-svg-work-in-safari) that specifically applies to non-rectangular...

Also from the SO page, MDN seems to [show SVG clipping in Safari as "no support"](https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path#Browser_compatibility) altogether, probably due to it being so unreliable.

ok well thanks for the report! I'll try to stay on top if a fix is ever released for Safari...

This should be easy enough by tweaking the doc build tools in place. Will have a look after the new versions are out.

Yes, now that this is released I'm going to have a look into this. It raises a question however: now that the ability to extend natives is opt-in, it seems...

Alternately it could just be a single definition file with everything together? Would having extended-native definitions in the `d.ts` file offend people who are adamantly against extending natives? Or does...

Ok, I'm having a look at this right now but there's a few roadblocks I'm hitting, and it would be nice to have some TS experts here to help out....

Also, could someone check my work so far? This seems to get the job done for the main core features in 2.0.0: ``` typescript declare module sugarjs { interface Sugar...

@trikadin Cool, that seems to have worked! For the second part, I'm declaring `interface Sugar` and it seems to have worked. Is that what you meant or something else?

Ok, I see... that's interesting. Actually, though, `Sugar` is not a class with any instance methods on it, just a namespace (well, actually a function as well, but not a...