I am adding an Angular UI Modal where I am passing the scope through to the Modal Window for 2 way binding. I used the resolve method to pass the scope value. D
resolve
For me none of the above worked.
Instead I had to do like was suggested in this comment in github.
The variable to be binded to must be an object, not only a simple value.
For example, if $scope.value does not work, it will work if you use $scope.someObject.value.
$scope.value
$scope.someObject.value