mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
angular.module('ionic.photos', [])
|
|
|
|
.controller('PhotosCtrl', function($scope) {
|
|
$scope.photos = [];
|
|
for(var i = 0; i < 100; i++) {
|
|
$scope.photos.push({});
|
|
}
|
|
})
|