diff --git a/example/photos/app.css b/example/photos/app.css new file mode 100644 index 0000000000..e69de29bb2 diff --git a/example/photos/app.js b/example/photos/app.js new file mode 100644 index 0000000000..2f9695fa43 --- /dev/null +++ b/example/photos/app.js @@ -0,0 +1,8 @@ +angular.module('ionic.photos', []) + +.controller('PhotosCtrl', function($scope) { + $scope.photos = []; + for(var i = 0; i < 100; i++) { + $scope.photos.push({}); + } +}) diff --git a/example/photos/index.html b/example/photos/index.html new file mode 100644 index 0000000000..566d6965ee --- /dev/null +++ b/example/photos/index.html @@ -0,0 +1,59 @@ + +
+ +