refactor($ionicSlideBoxController): add .update() method

Closed #835
This commit is contained in:
Andy Joslin
2014-03-21 15:37:16 -05:00
parent cd27e1b792
commit be34825843

View File

@@ -469,6 +469,16 @@ ionic.views.Slider = ionic.views.View.inherit({
}
// Public API
/**
* @ngdoc method
* @name ionicSlideBox#update
* @description
* Update the slidebox (for example if using Angular with ng-repeat,
* resize it for the elements inside).
*/
this.update = function() {
setTimeout(setup);
};
this.setup = function() {
setup();
};