Sergey Todyshev

Results 27 comments of Sergey Todyshev

the preprocessor is just rewritten using https://github.com/sergeyt/typescript-simple, so now it should support all compiler options. Please retry again.

the preprocessor is just rewritten using https://github.com/sergeyt/typescript-simple, so now it should support latest compiler with all compiler options. Please retry again.

@benmgreene the issue should be fixed if we find a way to stop [tracker](https://github.com/sergeyt/meteor-typeahead/blob/master/index.js#L380). I guess the tracker.autorun should return some handle/function to stop tracking. This handle could be associated...

@benmgreene I din't find easy way to stop [computation](https://github.com/sergeyt/meteor-typeahead/blob/master/index.js#L381) (run by meteor tracker) on destroying typeahead instance. Current idea is to replace $.fn.typeahead to intercept only typeahead('destroy') calls to invoke...

@benmgreene I think you are on right track. The solution looks good to me. Please go ahead to send PR.

@shanespace this should be feasible with custom data-source function in your template helpers. The function takes three arguments `(query, sync, async)` where `query` is input text with all tags. You...

Hi @leizard, I think you could just return all customer codes and typeahead input does the rest, since it is autocomplete input :)

@janat08 sure if someone makes a PR with this update, please feel free to be the first one :)

yes you could just replace typeahead.bundle.js file, or consider to check getting dependency from npm. AFAIK meteor is capable to work with npm these days.

@niranjans since typeahead.js v0.11 `source` function takes three arguments, last one is async callback, second one is sync callback.