i'm trying to run basic math functions on bound scope objects in my controller. The view is a series of sliders that will need to react based on the user input of a few different sliders. I can't seem to get the values to live update on the front end.
This is my 'calculations' for those values.
$scope.mainSlide = {
assets: ($scope.slide1.assets * $scope.slide2.assets / .1),
roa: ($scope.slide1.roa * $scope.slide2.roa / .1)
};
Im a bit confused why the computed values aren't being bound on the front end.
Any help, or direction would be greatly appreciated!