diff options
author | isteven <isteven@server.fake> | 2014-04-02 10:55:33 +0800 |
---|---|---|
committer | isteven <isteven@server.fake> | 2014-04-02 10:55:33 +0800 |
commit | 05ad5d2a9dd73eb03864df757982f23bd454b4a1 (patch) | |
tree | bb5dd2f722b0810b4002b9a0756246a0cc2257e5 | |
parent | 5f52b22ad7b7c8411769fb627f26d1a6cc2f3b31 (diff) | |
download | angular-multi-select-05ad5d2a9dd73eb03864df757982f23bd454b4a1.zip angular-multi-select-05ad5d2a9dd73eb03864df757982f23bd454b4a1.tar.gz angular-multi-select-05ad5d2a9dd73eb03864df757982f23bd454b4a1.tar.bz2 |
Updated readme.md
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ $scope variable. Array of objects. <br /> { id: 5, firstName: "Natalia", lastName: "Romanova", selected: false }, <br /> { id: 6, firstName: "Clark", lastName: "Kent", selected: true } ]; -<br />- **IMPORTANT**: Since the directive updates the $scope variable (input-model) directly, you cannot use the same $scope variable for multiple multi-select directives. You need to copy the $scope variable into a different name and use it on the second multi-select. +- **IMPORTANT**: This directive updates the $scope variable (input-model) directly, therefore you cannot use the same $scope variable for multiple multi-select directives. You need to copy the input variable to a new one and use it on the second multi-select, and so on. ##### item-label (REQUIRED) input-model property that you want to display on the button & checkboxes. Separate multiple values by space. |