NK
Size: a a a
NK
MK
NK
NK
NK
MK
MK
$scope.points = pointsService.points;
$scope.addPoint = pointsService.addPoint;
//region watchers
$scope.$watch(function () {
return pointsService.points;
}, function (newData) {
$scope.points = newData;
console.log("pointsCtrl:",$scope.points);
window.KAImagesWithPoints.forEach(function (image) {
image.refresh();
})
});
//endregion
NK
MK
NK
NK
NK
NK
MK
NK
NK
MK
NK
NK
NK