diff options
author | isteven <isteven@server.fake> | 2014-03-25 19:16:04 +0800 |
---|---|---|
committer | isteven <isteven@server.fake> | 2014-03-25 19:16:04 +0800 |
commit | a4bb08711e35ceff090b0235796a6264dff87d17 (patch) | |
tree | b9f84fbd6debf85aac41284a10c871fbe37c0180 /angular-multi-select.js | |
parent | 0c0a161a27584e96e7475057cba9d218074fbf4a (diff) | |
download | angular-multi-select-a4bb08711e35ceff090b0235796a6264dff87d17.zip angular-multi-select-a4bb08711e35ceff090b0235796a6264dff87d17.tar.gz angular-multi-select-a4bb08711e35ceff090b0235796a6264dff87d17.tar.bz2 |
Fix in-code manual
Diffstat (limited to 'angular-multi-select.js')
-rw-r--r-- | angular-multi-select.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/angular-multi-select.js b/angular-multi-select.js index 1ea6960..0e9657f 100644 --- a/angular-multi-select.js +++ b/angular-multi-select.js @@ -36,23 +36,23 @@ * { firstName: "Luke", lastName: "Skywalker" , ....., selected: true }, * { firstName: "John", lastName: "Wayne" , ....., selected: true } * ] - * item-label (String) (REQUIRED) + * item-label (string) (REQUIRED) * The object property that you want to display on the button & checkboxes. Separate multiple values by space. * Example: item-label="firstName lastName" - * item-ticker (String) (REQUIRED): - * Column name with a boolean value that represent the state of a checkbox. For example, in the list-items sample above, + * item-ticker (string) (REQUIRED): + * Column name with a boolean value that represents the state of a checkbox. For example, in the list-items sample above, * the item-ticker is "selected". So if selected === true, checkbox will be ticked. If selected === false, checkbox will not be ticked. * If not specified, the default will be "selected" - * orientation (String - "vertical" | "horizontal") + * orientation (string - "vertical" | "horizontal") * Orientation of the list of checkboxes. * If not specified, the default will be "vertical". - * max-labels (String) + * max-labels (string) * Maximum number of items that will be displayed in the dropdown button. If not specified, will display all selected items. * Example: "2" -> Using the list-items above, then button will display the first two selected: "Jane Angel, Luke Skywalker, ..." - * max-height (String) + * max-height (string) * Maximum height of the list of checkboxes in pixels. Will show scrollbar on overflow. * Example: "100". - * is-disabled (String - "true" | "false") + * is-disabled (expression) * Disable or enable the checkboxes. * If not specified, the default will be "false". * |