Hi,
I have been experiencing issues when adding a object that has a circular reference to itself as the model. Since my project does not do complicated things with the carousel, I found that a quick solution could be to remove the model scope watch function. All the functionalities work when I remove the model from the watch function and the angular bug with overflow is resolved.
Line 81 -> $scope.$watch('[ vm.options]', init, true);
Could this be added as a parameter e.g. IgnoreModelWatch -> $scope.$watch(IgnoreModelWatch ?'[ vm.options]' "'[vm.model, vm.options]', init, true); ??
Hi,
I have been experiencing issues when adding a object that has a circular reference to itself as the model. Since my project does not do complicated things with the carousel, I found that a quick solution could be to remove the model scope watch function. All the functionalities work when I remove the model from the watch function and the angular bug with overflow is resolved.
Line 81 -> $scope.$watch('[ vm.options]', init, true);
Could this be added as a parameter e.g. IgnoreModelWatch -> $scope.$watch(IgnoreModelWatch ?'[ vm.options]' "'[vm.model, vm.options]', init, true); ??