1

Here is the HTML

<div range-slider min="0" max="100" model-max="rangevalue.value" pin-handle="min" onHandleUp="x()"></div>

and i want to do something like this.

$scope.x=function(){
 console.log($scope.rangevalue.value)
}

but onHandleUp is not working.

vipin
  • 670
  • 2
  • 9
  • 25

1 Answers1

0

You have to write on-handle-up and not onHandleUp inside your div.

Btw and fyi, onHandleUp doesn't call $apply.

Antoine F.
  • 393
  • 6
  • 16