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
19 lines (16 loc) • 453 B
JavaScript
angular.module('toolbarDemo2', ['ngMaterial'])
.controller('TitleController', function($scope) {
$scope.title = 'My App Title';
})
.controller('AppCtrl', function($scope) {
var imagePath = 'img/list/60.jpeg';
$scope.todos = [];
for (var i = 0; i < 15; i++) {
$scope.todos.push({
face: imagePath,
what: "Brunch this weekend?",
who: "Min Li Chan",
notes: "I'll be in your neighborhood doing errands."
});
}
});