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

40% Statements 2/5
100% Branches 0/0
33.33% Functions 1/3
40% Lines 2/5
1 2 3 4 5 6 7 8 9 10 11 12                    
(function () {
  'use strict';
  angular
      .module('selectDemoBasic', ['ngMaterial'])
      .controller('AppCtrl', function() {
        this.userState = '';
        this.states = ('AL AK AZ AR CA CO CT DE FL GA HI ID IL IN IA KS KY LA ME MD MA MI MN MS ' +
            'MO MT NE NV NH NJ NM NY NC ND OH OK OR PA RI SC SD TN TX UT VT VA WA WV WI ' +
            'WY').split(' ').map(function (state) { return { abbrev: state }; });
      });
})();