Skip to content

Commit a987769

Browse files
committed
Auto merge of #2039 - Turbo87:jquery-dropdown, r=locks
rl-dropdown-component: Replace `component.$()` call with `$(component.element)` because using `this.$()` on components is deprecated r? @locks
2 parents 181cdba + cbb9566 commit a987769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/mixins/rl-dropdown-component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export default Mixin.create({
9292

9393
clickoutHandler(event) {
9494
let { component } = event.data;
95-
let $c = component.$();
95+
let $c = $(component.element);
9696
let $target = $(event.target);
9797

9898
/* There is an issue when the click triggered a dom change in the

0 commit comments

Comments
 (0)