fix(slideBox): do not require scroll parent

This commit is contained in:
Andrew
2014-10-08 15:56:23 -06:00
parent 4ae4354fae
commit 0d2f54e6a9
3 changed files with 36 additions and 31 deletions

View File

@@ -94,7 +94,7 @@
.controller('SlideCtrl', function($scope, $timeout) {
$scope.items = [];
for (var i = 0; i < 1000; i++) {
for (var i = 0; i < 10; i++) {
$scope.items.push(i);
}