UNPKG

angular-material-npfixed

Version:

The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M

14 lines (11 loc) 268 B
(function () { 'use strict'; angular .module('virtualRepeatVerticalDemo', ['ngMaterial']) .controller('AppCtrl', function() { this.items = []; for (var i = 0; i < 1000; i++) { this.items.push(i); } }); })();