Matt Bower

Results 11 comments of Matt Bower

``` javascript /*jshint smarttabs:true */ // var // foo = 'bar', // baz = 'blarg' // ; ``` and ``` javascript /*jshint smarttabs:false */ // var // foo = 'bar',...

Running into the same issue. Noticed a dozen `php` processes running at 25-60% of CPU after leaving open for multiple days. Computer started bogging down and fan was running hot....

I suspect that this will never be fixed since Facebook retired Nuclide/Atom IDE. Might be time to figure out alternatives for PHP in Atom. https://nuclide.io

I kind of like @benknight's idea where the classes would be derived internally from the object literal syntax. It could simplify the API because you wouldn't be maintaining a whitelist...

> Taking a step back and playing devil's advocate for a second, what is the tradeoff of just not doing this and forcing people to use wrapper divs? One downside...

Another approach: HOC wrappers around the TUI link components to provide the `history`-enabled logic to `onClick` passed into the wrapped link component. I did something akin to this with the...

Jenkins fails if an error in thrown in JS. And in `mocha-setup.js` I've monkey-patched `console.error` to throw if the message contains one of the two standard React prop type message...

An idea came to mind. Since we have different components for the button-style and text-style cases, maybe this should be a new component for graphic-style buttons/links called something like `GraphicButton`...

Without knowing all the edge cases, I would go with making the component `display: inline` by default and `display: inline-block` when an icon is present. Not sure how `display: inline`...