diff --git a/addon/components/-focusable.js b/addon/components/-focusable.js index 6c94e0304..63d8a35eb 100644 --- a/addon/components/-focusable.js +++ b/addon/components/-focusable.js @@ -17,7 +17,7 @@ import { action } from '@ember/object'; * * Use the following as a base: * ```hbs - * + * * * ``` */ @@ -68,7 +68,7 @@ export default class Focusable extends Component { }); } - @action unregisterListeners(element) { + @action deregisterListeners(element) { element.removeEventListener('focusin', this.handleFocusIn); element.removeEventListener('focusout', this.handleFocusOut); element.removeEventListener('mousedown', this.handleMouseDown);