Skip to content

Commit 564b38d

Browse files
committed
Merge branch 'patch-2' of https://github.com/eightyeight/angularjs-slider into eightyeight-patch-2
2 parents 3ea789d + cbfa603 commit 564b38d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

rzslider.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -749,12 +749,14 @@ function throttle(func, wait, options) {
749749
{
750750
if (this.tracking === this.refLow && newValue >= this.scope[this.refHigh])
751751
{
752+
this.scope[this.tracking] = this.scope[this.refHigh];
752753
this.tracking = this.refHigh;
753754
this.minPtr.removeClass('active');
754755
this.maxPtr.addClass('active');
755756
}
756757
else if(newValue <= this.scope[this.refLow])
757758
{
759+
this.scope[this.tracking] = this.scope[this.refLow];
758760
this.tracking = this.refLow;
759761
this.maxPtr.removeClass('active');
760762
this.minPtr.addClass('active');

0 commit comments

Comments
 (0)