Hi i have implemented your plugin to my projects, works great but i encountered problem when i try to update the data. it doesnt change, (needs to reload the page to apply the updates).

This image shows that it cant be clicked because of the data doesnt exist anymore(updated data).
The slides are based on the variable $scope.statuses, then it will repeat using ng-repeat.
` $scope.$watch(function(){ return Invoice.getDataStatus(); }, function(val) {
$scope.statuses = val;
if(val.length){
$scope.changeSlide(0);
var slide = $ionicSlideBoxDelegate.$getByHandle('SlideTopInvoice');
slide.update();
}
},true);`
I have try with the ionicSlideBoxDelegate in every time the data changed but still no luck,
Hi i have implemented your plugin to my projects, works great but i encountered problem when i try to update the data. it doesnt change, (needs to reload the page to apply the updates).

This image shows that it cant be clicked because of the data doesnt exist anymore(updated data).
The slides are based on the variable $scope.statuses, then it will repeat using ng-repeat.
` $scope.$watch(function(){ return Invoice.getDataStatus(); }, function(val) {
I have try with the ionicSlideBoxDelegate in every time the data changed but still no luck,