Cleanup hotkey code for query selector

This commit is contained in:
cptran777 2018-09-07 10:29:14 -07:00
parent 36c1a08e12
commit 5fc87b941f

View File

@ -65,7 +65,7 @@ export default class GlobalHotkeys extends Component {
}
didInsertElement() {
const body = document.getElementsByClassName('ember-application')[0];
const body = document.querySelector('.ember-application');
if (body) {
body.addEventListener('keyup', this.onKeyUp.bind(this));
@ -73,7 +73,7 @@ export default class GlobalHotkeys extends Component {
}
willDestroyElement() {
const body = document.getElementsByClassName('ember-application')[0];
const body = document.querySelector('.ember-application');
if (body) {
body.removeEventListener('keyup', this.onKeyUp.bind(this));