ryan neptune

Results 80 comments of ryan neptune

[NPM](http://npmjs.org/) modules that use UMD (like [verge](//github.com/ryanve/verge)) could be added as [devDependencies](https://npmjs.org/doc/json.html#devDependencies) and bundled via [grunt](http://gruntjs.com/) into this pattern: ``` js !function(root, name, make, bundle) { make = make.call(root, bundle);...

An alternative to bundling is `require` the needed modules as dependencies but not bundle them. Devs would need to do bundle via [browserify](https://github.com/substack/node-browserify), [ender](https://github.com/ender-js/Ender), or otherwise. How are most of...

Thanks! Does CDNJS automatically update from npm?

@alanhogan Not yet but soon. Many people have asked me about AJAX capabilities on Twitter and #15 and #13. Not thinking about AJAX initially was an oversight on my part....

@alanhogan A necessary feature is to make it so that if someone loads AJAX content (by any means) they could call `Response.create()` w/o any args to re-scan the DOM for...

@alanhogan I'm hoping to get this in there soon but it'll probably be a couple weeks. A partial solution in the meantime is to call `Response.create` manually after templates have...

@alanhogan In 0.7- you can call [Response.create](https://github.com/ryanve/response.js/wiki/how-to-create-breakpoint-sets) multiple times but not for the **exact** same set. The prefix has to be different for each one. It activates for all matching...

@alanhogan I''ve been working rewriting the breakpoint API. I'm leaning towards a using a state attribute like "data-responsejs-active" to track whether an element is active. It would make it easy...

I'm planning to rework the internal API to accommodate emitting events. But in your use case I think they'd be unaware of the image rendering. Does deferring the code via...

@kat I like the overall idea. It'd probably be easiest to implement it by allowing a processor to be specified in the object you pass to `Response.create`. When do you...