I want to preselect a value in my select but there is nothing, why is this?
angular.module('selectExample', [])
.controller('ExampleController', ['$scope', function($scope) {
$scope.cardSelect = [
{name:'black', shade:'dark'},
{name:'white', shade:'light'},
{name:'red', shade:'dark'},
{name:'blue', shade:'dark'},
{name:'yellow', shade:'light'}
];
$scope.card = $scope.cardSelect[2]; // red
}]);