all files / app/main/components/material-docs/demo-partials/virtualRepeat/demoHorizontalUsage/ script.js

40% Statements 2/5
100% Branches 0/0
50% Functions 1/2
40% Lines 2/5
1 2 3 4 5 6 7 8 9 10 11 12 13 14                        
(function () {
  'use strict';
 
    angular
      .module('virtualRepeatHorizontalDemo', ['ngMaterial'])
      .controller('AppCtrl', function() {
        this.items = [];
        for (var i = 0; i < 1000; i++) {
          this.items.push(i);
        }
      });
 
})();