Vlad Zarakovsky
Vlad Zarakovsky
> It is different enough from Ruby that it would require a different code base. Different code base as in it will require changes to agoo-c itself, or it will...
When I needed to test something similar on another project, I created 2 separate Karma configs. But then I lost ability to run Karma tests in continuous mode. So I...
The Browserstack and SauceLabs were mentioned in #82 to help with testing in various browsers.
> Is there a in-browser test runner that we could use with the same tests? @renoirb I'm not quite sure what do you mean by this. Karma already runs tests...
It may be possible, since we have separated `label` and `value` for each suggestion item in v1.1. List of items provided via `list` property can be any object with properties...
@rightaway The following options should work for you then: ``` javascript list: [ { value: 'Text for dropdown and input field', label: 'http://example.com/img.jpg' }, ...], item: function (suggestion, input) {...
@JronZhu You'll need to provide custom `filter` function since the default one matches everything in `label`. Something similar to `filter:` in comment above https://github.com/LeaVerou/awesomplete/issues/16888#issuecomment-225980036 where item's label has several values...
Currently we support a separate `label` and `value` for each suggestion (the original array of strings, objects or arrays). See docs http://leaverou.github.io/awesomplete/#basic-usage Additional properties are not directly possible due to...
Thanks for your contribution! I think Array and non label/value Object cases can be skipped. No need to copy properties when `data` is Array or Object without label/value properties. Also...
I was thinking about having `suggestion.data` for all other props as a way to not complicate implementation, but then API becomes weird: ``` javascript suggestion.label suggestion.value suggestion.data.everythingElse ``` Of course...