From 4935d279f8940ef0485f7f8c37c19ef8e373d546 Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Tue, 2 Aug 2016 21:16:06 +0100 Subject: [PATCH] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 772ae06..1315caa 100644 --- a/README.md +++ b/README.md @@ -448,7 +448,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'}, @@ -456,7 +455,6 @@ example.setValue([ ]); // or via an array of strings - example.setValue(['Four','Five','Six']); ```