/** * MUI Angular Radio Component * @module angular/radio */ import angular from 'angular'; const moduleName = 'mui.radio'; angular.module(moduleName, []) .directive('muiRadio', function() { return { restrict: 'AE', replace: true, scope: { label: '@', name: '@', value: '@', ngChecked: '=', ngDisabled: '=', ngModel: '=' }, template: function(tElement, tAttrs) { var isUndef = angular.isUndefined, html = ''; html += '