all files / app/main/components/material-docs/demo-partials/checkbox/demoBasicUsage/ script.js

14.29% Statements 1/7
100% Branches 0/0
0% Functions 0/1
14.29% Lines 1/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14                         
 
angular.module('checkboxDemo1', ['ngMaterial'])
 
.controller('AppCtrl', function($scope) {
 
  $scope.data = {};
  $scope.data.cb1 = true;
  $scope.data.cb2 = false;
  $scope.data.cb3 = false;
  $scope.data.cb4 = false;
  $scope.data.cb5 = false;
 
});