Kara Brightwell
Kara Brightwell
@Richard-Thompson have you tried [my workaround](https://github.com/quarterto/Menagerie/blob/master/components/selector.jsx#L107-L108)?
in `onOptionSelected`, adding `this.refs.typeahead.refs.entry.blur() ; this.refs.typeahead.refs.entry.focus()` _should_ work
ah, sorry, typo. it should be `this.refs.typeahead.refs.entry.blur()` (same for focus as well)
There's also [ever](https://www.npmjs.org/package/ever), which wraps elements with an EventEmitter.
What's happening is the `context` is being discarded in `curry$` because `bound` isn't set. So, rather than binding the method in the constructor, I think we can just do `curry$(function()...
Yep, and this way it can still be called in a separate context (`curry$` passes down the original calling context), which wouldn't be possible if we did `@method = @method.bind...
Having battled with this all night (it was inexplicably transforming `this` into `true`), I think we'll have to rethink how to do this. Passing `bound` as `true` keeps the top-level...
I'm -1 on pragmas. `"use strict"` is only a pragma because you don't compile Javascript. I'm definitely of the opinion that Livescript should be able to run wherever Javascript can,...
i was running into this issue, and it appears to have been fixed by adding `localsettings` to my `sessionoptions`
this is because `escpos-usb` has a wildcard dependency on `usb`, which means it's pulling in versions with breaking changes it's not compatible with. with recent versions of npm you can...