Explorar el Código

checked for existing pickedItems

tags/0.1.11
Robin Thoni hace 8 años
padre
commit
373c2c6e0a
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3
    1
      src/lupickertable.js

+ 3
- 1
src/lupickertable.js Ver fichero

@@ -16,7 +16,9 @@ angular.module('luticateUtils')
16 16
 
17 17
                     $scope.pickerOptions = $scope.options();
18 18
                     $scope.pickerOptions.luPickerTableScope = $scope;
19
-                    $scope.pickerOptions.pickedItems = [];
19
+                    if ($scope.pickerOptions.pickedItems == null) {
20
+                        $scope.pickerOptions.pickedItems = [];
21
+                    }
20 22
 
21 23
                     var onItemClicked = $scope.pickerOptions.onItemClicked;
22 24
                     $scope.pickerOptions.onItemClicked = function(item)

Loading…
Cancelar
Guardar