I'm new to angularjs and still teaching myself how it all works, so I'm assuming I'm missing something fundamental here.
Basically, I have a slider.html file that has:
{{priceSlider}}
<rzslider
rz-slider-model="priceSlider"
rz-slider-always-show-bar="true"
rz-slider-translate="translate"
rz-slider-on-change=""
rz-slider-hide-limit-labels="true"
rz-slider-floor="25"
rz-slider-ceil="10000">
</rzslider>
Now the {{priceSlider}} returns the value just fine when the slider is moved on that page.
So on my main.html page I have:
{{priceSlider}}
<div ng-include="slider.html"></div>
I know the slider.html file is being pulled in just fine because I can see the content for that partial but my problem is that {{priceSlider}} is not updated on main.html like it is on slider.html. I am not sure what I am missing here.