Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 7516548

Browse files
committed
fixed #44
1 parent eab6af5 commit 7516548

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
angular.module('app', ['ui.multiselect'])
22

33
.controller('appCtrl', ['$scope', function($scope){
4-
$scope.cars = [{id:1, name: 'Audi'}, {id:2, name: 'BMW'}, {id:1, name: 'Honda'}];
4+
$scope.cars = [{id:1, name: 'Audi'}, {id:2, name: 'BMW'}, {id:3, name: 'Honda'}];
55
$scope.selectedCar = [];
66

77
$scope.fruits = [{id: 1, name: 'Apple'}, {id: 2, name: 'Orange'},{id: 3, name: 'Banana'}];
88
$scope.selectedFruit = null;
9-
}])
9+
}])

0 commit comments

Comments
 (0)