cssinjs
cssinjs copied to clipboard
Sandbox for implementation examples and problems with Reacts inline CSS pattern
Did you try [`matchMedia`](http://caniuse.com/#feat=matchmedia) when playing with Media Queries? Or maybe [enquire.js](http://wicky.nillia.ms/enquire.js/) if you wanted a nicer API? What were the issues you ran into?
You are adding a bound function but then removing the original function, it won't work. ``` javascript function hello() { console.log('Hello'); } el.addEventListener('mousein', hello.bind(this)); el.removeEventListener('mousein', hello); // Nothing will be...