Nikita Vasilyev

Results 65 comments of Nikita Vasilyev

I'm sorry, it's much more complicated than I thought. I tried to use latest version of SM2 with `soundManager.useHTML5Audio = true`. http://github.com/NV/mumbl/compare/mp3. It doesn't work well.

[atonparker/bitterset](https://github.com/atonparker/bitterset) doesn’t have this problem, so I’ll use that for now. http://requirebin.com/?gist=106b3c60826a5aa996bf

Shameless promotion: [LiveReload](https://github.com/mockko/livereload) Firefox extension is on the way. Stay tuned.

I've no idea how to implement this. But I'd like to! It's easy to achieve for `file://localhost`, but what's about `http://example.local/`? What's about a dynamic content?

This will be enough for most cases: ``` function basename(path) { var index = path.lastIndexOf("/") return path.slice(index + 1) } ```