Skip to content

Commit 35fe489

Browse files
authored
Use this, not $this
Used `this` instead of undefined `$this`, which currently sits out of scope where it is called.
1 parent 2472f77 commit 35fe489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/ImageSelect.jquery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
}
186186
});
187187
});
188-
$this.trigger('chosen:hiding_dropdown');
188+
this.trigger('chosen:hiding_dropdown');
189189
return ret;
190190
}
191191
});

0 commit comments

Comments
 (0)