Is there a simple method to give a directive two distinct names?
For example:
app.directive(['directiveNameOne', 'directiveNameTwo'], function() {...});
I have created a directive that handles both radio buttons and checkboxes in the same manner, and I believe it would be beneficial for other developers to have specific labels for each element.