ng2-dnd
ng2-dnd copied to clipboard
Event Name Anti-Pattern
Prefixing event names with things like on
for example in onDropSuccess
is considered an anti-pattern. https://angular.io/guide/styleguide#dont-prefix-output-properties
Proper name would be something like: dropSuccess
.