Ed Hinchliffe

Results 7 comments of Ed Hinchliffe

Did you ever get around to this @jmagnusson?

I have forked and committed some code that should ignore inline comments: de7cb115747be59d3d29a506517e203561c7ae10 Note as the literate handler would turn this: ``` coffeescript some markdown text for item in list...

FYI if you guys are using styled components (or possibly glamorous?), you may find that the proptypes tables don't render properly. I think it's related to reactjs/react-docgen#256 Basically if you...

Hi @dasilvacontin - check the console of your fiddle - `jss` is not being defined because github is serving the file with the wrong MIME type, so whilst it looks...

I looked into this and worked out what the issue is - the [`getRules`](https://github.com/Box9/jss/blob/master/jss.js#L36) function forces the selector to lowercase. This is fine for elements, but classes can have uppercase...

Can you clarify how you are calling `disconnect`? Exposing the socket's disconnect method via my service seems to work fine for me: ``` coffee .factory('Socket', (socketFactory)-> ioSocket = io.connect('/', {})...

> Is there a difference between ioSocket and the disconnect exposed by socketFactory? Probably not - when I wrote that code this library wasn't exposing a disconnect method, so if...