/** * MUI Angular Checkbox Component * @module angular/checkox */ import angular from 'angular'; const moduleName = 'mui.checkbox'; angular.module(moduleName, []) .directive('muiCheckbox', ['$parse', function() { return { restrict: 'AE', replace: true, scope: { label: '@', name: '@', value: '@', ngChecked: '=', ngDisabled: '=', ngModel: '=' }, template: function(tElement, tAttrs) { var isUndef = angular.isUndefined, html = ''; html += '
'; return html; } } }]); /** Define module API */ export default moduleName;