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 @@ + + + + Photos + + + + + + + + + + + +
+
+

Photos

+ Select +
+ +
+
+
+ Photo +
+
+
+
+
+
+ + + diff --git a/scss/ionic/_scaffolding.scss b/scss/ionic/_scaffolding.scss index cb8883b257..2d11e7e182 100644 --- a/scss/ionic/_scaffolding.scss +++ b/scss/ionic/_scaffolding.scss @@ -1,3 +1,8 @@ +*, +*:before, +*:after { + @include box-sizing(border-box); +} body { position: fixed;