David Harkness
David Harkness
It looks like you can set the `useBrackets` option to `false`, but be warned that code that processes the output won't be able to distinguish the dot notation for arrays...
I used [a color inverter](http://netpresent.net/css-inverter.php) which works passably. I saw from another issue that `styles.css` is built from some other node package, so this will have to do.
@slang800 - LOL, that's like saying, "More light would be nice, but the real problem is that you're trying to read." :) @tuhoojabotti - Thanks! That combined with removing the...
@Ajedi32 - Not really. Due to severe photo-sensitivity staring at large, bright areas--especially white backgrounds--huts my eyes. Sure, I could adjust the display colors in every applications as I did...
@slang800 - I thank you profusely for taking accessibility seriously and rejoice with each project that does so! :) I know first-hand how difficult it can be. Even something as...
What's the quickest path to seeing the list of mismatch messages, especially in comparison to the old messages? If people can see the end result easily and like it, they'll...
This would be very helpful for task aliases (`test` in place of `qunit` with our own help message) and subtasks (`test-report` calls `qunit_junit` followed by `qunit`, so I'd like to...
I added a `min-width` to the `input` to solve this for my use case. Since my component is used to enter five-digit ZIP codes, I set it to `4em` so...
How about using `??:` instead? From what I can tell, this new operator combines the effects of the existing `??` and `?:` operators in PHP.
@brandonkelly I can only speak for PHP, but both `??` and `?:` can be used in a series. > $y = null; > echo $x ?? $y ?? 'foo'; foo...