FIX: make sure the element exists before calling `off`
This commit fixes an issue happening only when running tests under `/qunit` and not with `rake qunit:test`
This commit is contained in:
parent
7533e5b541
commit
12beb77afa
|
@ -19,18 +19,22 @@ export default Ember.Mixin.create({
|
|||
.off("mousedown.select-kit")
|
||||
.off("touchstart.select-kit");
|
||||
|
||||
if (this.$header()) {
|
||||
this.$header()
|
||||
.off("focus.select-kit")
|
||||
.off("blur.select-kit")
|
||||
.off("keypress.select-kit")
|
||||
.off("keydown.select-kit");
|
||||
}
|
||||
|
||||
if (this.$filterInput()) {
|
||||
this.$filterInput()
|
||||
.off("change.select-kit")
|
||||
.off("keydown.select-kit")
|
||||
.off("keypress.select-kit")
|
||||
.off("focus.select-kit")
|
||||
.off("focusin.select-kit");
|
||||
}
|
||||
},
|
||||
|
||||
didInsertElement() {
|
||||
|
|
Loading…
Reference in New Issue