From 8552bf41c0775a33ec4e3541626530f05b1e5e54 Mon Sep 17 00:00:00 2001 From: Pablo Villoslada Puigcerber Date: Mon, 19 Oct 2015 03:10:31 +0200 Subject: [PATCH] docs(select): add multiple attribute Add multiple parameter to the documentation of the select directive. --- src/ng/directive/select.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ng/directive/select.js b/src/ng/directive/select.js index 174343e5f9f0..6da1f849a2a3 100644 --- a/src/ng/directive/select.js +++ b/src/ng/directive/select.js @@ -187,6 +187,8 @@ var SelectController = * * @param {string} ngModel Assignable angular expression to data-bind to. * @param {string=} name Property name of the form under which the control is published. + * @param {string=} multiple Allows multiple options to be selected. The selected values will be bound to the model + * as an array. * @param {string=} required Sets `required` validation error key if the value is not entered. * @param {string=} ngRequired Adds required attribute and required validation constraint to * the element when the ngRequired expression evaluates to true. Use ngRequired instead of required