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

51 lines (41 loc) 1.08 kB
angular .module('radioDemo1', ['ngMaterial']) .controller('AppCtrl', function($scope) { $scope.data = { group1 : 'Banana', group2 : '2', group3 : 'avatar-1' }; $scope.avatarData = [{ id: "avatars:svg-1", title: 'avatar 1', value: 'avatar-1' },{ id: "avatars:svg-2", title: 'avatar 2', value: 'avatar-2' },{ id: "avatars:svg-3", title: 'avatar 3', value: 'avatar-3' }]; $scope.radioData = [ { label: '1', value: 1 }, { label: '2', value: 2 }, { label: '3', value: '3', isDisabled: true }, { label: '4', value: '4' } ]; $scope.submit = function() { alert('submit'); }; $scope.addItem = function() { var r = Math.ceil(Math.random() * 1000); $scope.radioData.push({ label: r, value: r }); }; $scope.removeItem = function() { $scope.radioData.pop(); }; }) .config(function($mdIconProvider) { $mdIconProvider.iconSet("avatars", 'icons/avatar-icons.svg',128); });