We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d8793c commit 7cb0465Copy full SHA for 7cb0465
README.md
@@ -104,7 +104,7 @@ If you add the ng-model directive to same the element as ui-select2 then the pic
104
```html
105
<select ui-select2 ng-model="select2" data-placeholder="Pick a number">
106
<option value=""></option>
107
- <option ng-repeat="{{number in range}}" value="{{number.value}}">{{number.text}}</option>
+ <option ng-repeat="number in range" value="{{number.value}}">{{number.text}}</option>
108
</select>
109
```
110
0 commit comments