ryan neptune
ryan neptune
Internally it still needs to be tied to a breakpoint set so that it knows what breakpoints to listen for. I have a pretty good idea about how to go...
@bennybee I agree and I've been considering how to facilitate ems in a future [response.js](../) version. It can be done in [0.7](../releases) now via [`Response.addTest`](../tree/0.7.12#extending) with something like: ``` js...
Thanks @jsanglier—combining my [example above](#issuecomment-36196762) with the [custom names](https://github.com/ryanve/response.js/issues/10#issuecomment-6439578) idea is the best way for now ``` js !function(Response) { var names = ['small', 'medium', 'large']; var values = {medium:...
Ok I'll have to do a new version with a new export name. I'll post here when I do!
[`noConflict`](https://github.com/ryanve/response.js#noconflict) restores the fetch `Response` and returns a reference to the library ```js let R = Response.noConflict() ``` [See `noConflict` in the source to see how it works](https://github.com/ryanve/response.js/blob/v0.10.1/response.js#L809-L813) : )...
@shukriadams I don't think so. I didn't consider that sort of need when I first wrote the plugin but yea I can see the need for it. Did you find...
@jlevinsohn31 If you use 2 tests at once, then one will override the other. You may want to create a custom test that combines both, like in [#10](10#issuecomment-6439578). Does that...
@ay13 Cool—that's what I'm leaning towards too. Pre 1.7 we used [.resize()](http://api.jquery.com/resize/) which [could have](http://stackoverflow.com/questions/8976092/bind-to-ready-and-resize-at-same-time-using-jquery-on) also been done with [.bind()](http://api.jquery.com/bind/) - In jQuery 1.7+ all of the jQuery [event methods](http://api.jquery.com/category/events/)...
@ay13 Probably June. In the meantime you can alias to bind/unbind. For the on/off usage in Response this should work: ``` javascript jQuery.fn.on = jQuery.fn.on || jQuery.fn.bind; jQuery.fn.off = jQuery.fn.off...
@gonzaloplaza Thanks for the detailed report! Hmm. I wonder...does it work as `root`? ```js "root.jQuery": "jquery", ``` Do you know which version of `response.js` the theme uses? Is there a...