Gary Katsevman

Results 538 comments of Gary Katsevman

We recently updated backbone-nested to work with Backbone 1.x. Can you retest and see whether it is still breaking? Also, looking at the readme of modelbinder, the author seems to...

Do you think something like https://github.com/videojs/video.js/blob/stable/src/js/xhr.js#L80-L84 is sufficient or are there some more usecase you can think off that won't be covered?

There's a better implementation than what I linked above in videojs/video.js#2633

What about making it in an `require('xhr/ie')`? or `require('xhr/cors')`?

Yeah, definitely best to wait till firefox ships it, though, we don't have to wait for long since it's [scheduled for late october](https://wiki.mozilla.org/Release_Management/Calendar). Wanted to make sure everyone here was...

Can we use the files from https://github.com/mathiasbynens/small? Perhaps even depend on it and build out the base64 files at publish time?

Yeah, we can always just download the file and do it the one time. The mp4 with audio in `small`, comes out to ~2K compared to the current h264 mp4...

That probably makes sense since the default is `inline:false`, https://github.com/video-dev/can-autoplay/blob/master/lib/index.js#L8 The quick fix is for you to pass `inline: true` to `.video()`. ```js canAutoplay.video({ inline: true }); ``` I wonder...

Are you using it in SSR? Blob is available globally in browsers but not available globally in node. This module probably isn't set up for SSR, currently.

We don't really have a way to do that right now. The closest is probably to call `reset()` on the player. If you know that the event has ended, you...