I have $scope.attributesList = [{name:"",val:""}....]
in some cases I need to copy my list and unbind it from my destination param.
var param = $scope.attributesList;
the problem is each time $scope.attributesList changed my param also changed, I need my param to be static after I copied my $scope.attributesList and not to changed. What is the way to unbind it?
Thanks,