Matt Kantor
Matt Kantor
FWIW `keyof` is not necessary in the generic function case. [This example](https://www.typescriptlang.org/play?#code/PTAEDMFNIhLCD2ECuBbUAKALk1BDAaxli1AQCMA3WBZAZ1CwAs9S8A7AT1DuQHM+kOlhrsGAdyawAxk1AATJHgAOyyHgBOoTTABW9UuIQb5DWO0ZSG4WABtIASgBQT+ZGm2doaQjGlIAB54qMr2AFygADwAKqCBWJDspqAA5OAICCkAfBgOoAC8WaDI7ATsCOLsToHBoZCRKdm5TiCgbe2gAHpOQA) also does not provide type-aware autocomplete suggestions: ```ts declare const example: () => unknown example() // ^ ```
I got bit by this too (and am currently rate-limited because of it ðŸ˜). I learned that `docker-compose` does not reuse anonymous volumes if you do `docker-compose down && docker-compose...
I know this is half-baked and ancient, but is it still generally the correct approach for versioning frameworks?
I've been doing some investigation on this: [here are some tests of various JavaScript style injection methods](http://fiddle.jshell.net/y9JS8/show/). Unfortunately in IE9 the `@media screen` styles are incorrectly applied to print media...
I came up with [a workaround](http://jsfiddle.net/7496R/) that seems to produce correct behavior. The problem was related to the fact that while IE respects `HTMLStyleElement.media` it disregards `CSSMediaRule.media`, so this workaround...
I realize my last comment was somewhat inaccurate and I'd rather be precise about the nature of this bug to avert future head-scratching. > ...while IE respects `HTMLStyleElement.media` it disregards...
@LeaVerou I appreciate it :smile:. Are there any test pages (besides the -prefix-free homepage) that I can use for integration testing when I get to that point? If not I...
The fact that IE9 treats dynamically-added `@import` rules properly led me to a ridiculous solution: inserting the CSS by making the browser `@import` it from a data URI. And it...
> I assume IE10 doesn't have the same issue? If not, it should be reported to MS. Yeah, I've been unable to reproduce this in IE10. > How about inspecting...