UNPKG

ionic-angular

Version:

[![Circle CI](https://circleci.com/gh/driftyco/ionic.svg?style=svg)](https://circleci.com/gh/driftyco/ionic)

26 lines (16 loc) 770 B
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); }; });