mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 21:03:29 +03:00
Fixed "remove all listeners" deprecation
no issue - https://deprecations.emberjs.com/v3.x/#toc_events-remove-all-listeners
This commit is contained in:
parent
f8ccb81dfc
commit
344999a69b
@ -14,6 +14,6 @@ export default BasicDropdown.extend({
|
|||||||
|
|
||||||
willDestroyElement() {
|
willDestroyElement() {
|
||||||
this._super(...arguments);
|
this._super(...arguments);
|
||||||
this.dropdown.off('close');
|
this.dropdown.off('close', this, this.close);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user