Files
ionic-framework/demos/old/pull-to-refresh/script.js
2014-05-27 11:21:08 -06:00

26 lines
770 B
JavaScript

angular.module('ionicApp', ['ionic'])
.controller('MyCtrl', function($scope, $timeout) {
$scope.myTitle = 'Template';
$scope.items = ['Item 1', 'Item 2', 'Item 3'];
$scope.doRefresh = function() {
console.log('Refreshing!');
$timeout( function() {
$scope.items.push('New Item ' + Math.floor(Math.random() * 1000) + 4);
$scope.items.push('New Item ' + Math.floor(Math.random() * 1000) + 4);
$scope.items.push('New Item ' + Math.floor(Math.random() * 1000) + 4);
$scope.items.push('New Item ' + Math.floor(Math.random() * 1000) + 4);
//Stop the ion-refresher from spinning
$scope.$broadcast('scroll.refreshComplete');
}, 1000);
};
});