Samuel Gaus

Results 53 comments of Samuel Gaus

That's very reasonable but then you'd have to version and document the API of the object between them

Does anyone have advice for consuming the contentWindow portion of it from angular2?

Everything is working fine - had a little issue with tree-shaking but this works fine: ```typescript import { iframeResizerContentWindow } from 'iframe-resizer'; // This needs to be referenced so it...

To expand on this, I'd love an api like this: ``` ac.grant('user').resource('resource_one').action('create', 'any') ac.grant('user').resource('resource_two').action('edit', 'own') ``` allowing ``` ac.grant('user').resource('resource_one').action('*', 'any') ``` or ``` ac.grant('admin').resource('*').action('*', 'any') ``` or some other combination...

@slevithan can this be implemented now? Is this already available?

I'd like to be able to decorate methods as follows ``` javascript @controller('/example') class Example { @get('/') hello = (request, reply) => reply('world') } ```

I was thinking at the very least two attributes: the 'prefix' (defaults to @) and a 'url replacement pattern' (perhaps substituting \1 for the matched username or something) On 26...

I'm going to try to pick this up next week, focusing on original order.

I'd like to be able to pass in some `css` to a component and merge that with another `css` prop used inside that component.