Skip to content
This repository has been archived by the owner on Apr 8, 2022. It is now read-only.

Commit

Permalink
fix: avoid template string/literals
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianossd committed Mar 17, 2021
1 parent 1f38a77 commit 539af9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto-complete.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
if (o.isMobile) {
live('autocomplete-suggestions', 'scroll', function() {
if (!that.sc.className.includes(suggestionsFocusClass)) {
that.sc.className += ` ${suggestionsFocusClass}`;
that.sc.className += ' autocomplete-suggestions--focused';
}

that.sc.focus();
Expand Down

0 comments on commit 539af9b

Please sign in to comment.