Andrew Humphreys

Results 12 comments of Andrew Humphreys

browserstack or saucelabs have been good for me. For selenium tests im a fan of nightwatch or pioneer

Noticed this works if we change: https://github.com/akre54/Backbone.NativeView/blob/master/backbone.nativeview.js#L125 to enable `useCapture` `elementAddEventListener.call(this.el, eventName, handler, true);` Any objections to a PR for this?

I haven't noticed any but haven't done any perf tests. Maybe performance would be effected slightly? Not sure if it would be breaking. The API would still work as it...

What about other input specific events? Blur and input seem to be effected also

Hmm let me investigate that and I'll post back :) Thanks btw, I'm build a Marionette.Native plugin. This library and Backbone.Fetch are the main parts of it, nice work! On...

So looking at the jquery source, they seem to attach the events to each element individually rather than the document: https://github.com/jquery/jquery/blob/76c5237cc408c01ae67f5c68d39ed6f1e4ef8003/src/event.js#L92-L94 This would probably be quite a large piece of...

Yeah I agree, the `$` way of searching for elems with the selector and attaching events to those elems rather than document seems like overkill here. I'd be happy with...

Yeah sure, ill get on it tomorrow morning (UK based 😄)

:+1: nice syntax. I see this fitting nicely with #1976 which Im going to pick up after 2.4.2 is gone

I think now that we've merged `LayoutView` into `ItemView` in the major branch, it will be good to look at the possibility of using a document fragment - similar to...