Jimmy Jia

Results 404 comments of Jimmy Jia

Alternatively, something like `event.fireDefault` or `event.triggerDefault` might work – just to undo the `preventDefault`. It'd only work for this specific case though.

@tbondwilkinson `beforeunload` already handles the case of the user trying to navigate off my page entirely, I think. I'm more concerned using e.g. back arrow to go _between_ history entries...

I see what you mean. Having some limited ability to show a dialog would probably be good enough for me. All else being the same, I'd prefer to show my...

Perhaps target VS2015? 2013 really is missing a lot of C++11 features (like `constexpr`...)

I will need to do this eventually, FWIW, but I'm focusing on just OS X first.

To clarify, assuming I can get away with it, I'd target VS2015 and hopefully not have to do too much work. I agree that fixing things for VS2013 would be...

Looks like VS2015 will support everything in C++11 except for expression SFINAE: http://blogs.msdn.com/b/vcblog/archive/2015/06/19/c-11-14-17-features-in-vs-2015-rtm.aspx Hopefully won't be too bad to add support, then.

VS2015 is out now: http://blogs.msdn.com/b/somasegar/archive/2015/07/20/visual-studio-2015-and-net-4-6-available-for-download.aspx

We dropped Windows support from our requirements, so I'm no longer planning on working on this issue.

It's for border-box. Suppose you have an element with `height: 100px` and `padding: 20px 0 0 0`. If we have `box-sizing: content-box`, then the computed height style is `100`, which...