UNPKG

ionic-cordova-gulp-seed

Version:

Ionic & Cordova & Gulp seed with organized code, tests, bower support and some other stuff. Originated from ionic-angular-cordova-seed.

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); }; });