UNPKG

ldx-widgets

Version:

widgets

21 lines (19 loc) 428 B
(function() { module.exports = { createMenuItems: function() { var menuItems; menuItems = []; menuItems.push({ value: 'PatientConsent', label: t('Patient Consent') }); return menuItems; }, selectMenuItem: function(menuItem) { switch (menuItem.value) { case 'PatientConsent': return this.handleConsentClick(); } } }; }).call(this);