WIP plugins: update plugin
[oweals/peertube.git] / client / src / app / shared / buttons / action-dropdown.component.ts
index f5345831b86dd5827d28a11a14411347945ecdc1..c9dbbfda243035c10b905903ae5ba594e6f0de9e 100644 (file)
@@ -41,10 +41,4 @@ export class ActionDropdownComponent<T> {
   areActionsDisplayed (actions: DropdownAction<T>[], entry: T) {
     return actions.some(a => a.isDisplayed === undefined || a.isDisplayed(entry))
   }
-
-  handleClick (event: Event, action: DropdownAction<T>) {
-    event.preventDefault()
-
-    // action.handler(entry)
-  }
 }