My ng-selected
expression sets selected="selected"
html attribute in <option>
tag ( you can see it in screenshot http://prntscr.com/bmgozg ) but
for some unknown to me reason this <option>
element is still not selected on web page...
I use Angular 1.4.7.
<select ng-model="link.destination_slide_number">
<option value="{{$index + 1}}"
ng-repeat="canvas in vm.canvases"
ng-selected="link.destination_slide_number == $index + 1">Go to slide #{{$index + 1}}
</option>
</select>