revert arrow function change

This commit is contained in:
Mike Greiling 2017-10-12 22:51:09 -05:00
parent 8c64e8b4b6
commit 0885126a3b
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* eslint-disable func-names, space-before-function-paren, one-var, no-var, one-var-declaration-per-line, object-shorthand, comma-dangle, prefer-arrow-callback, no-else-return, newline-per-chained-call, wrap-iife, max-len */
export default function initCompareAutocomplete() {
$('.js-compare-dropdown').each(() => {
$('.js-compare-dropdown').each(function() {
var $dropdown, selected;
$dropdown = $(this);
selected = $dropdown.data('selected');