Merge remote-tracking branch 'origin/master'

This commit is contained in:
Josh Johnson 2016-08-02 21:51:40 +01:00
commit 3da5b9188c

View file

@ -456,7 +456,6 @@ const valueArray = example.getValue(); // returns [{ active: true, choiceId: 1,
const example = new Choices(element);
// via an array of objects
example.setValue([
{value: 'One', label: 'Label One'},
{value: 'Two', label: 'Label Two'},
@ -464,7 +463,6 @@ example.setValue([
]);
// or via an array of strings
example.setValue(['Four','Five','Six']);
```