Skip to content

Commit 98be34b

Browse files
author
Dragan Atanasov
committed
Added one space required after "if" keyword #14274
1 parent bd47df7 commit 98be34b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Search/view/frontend/web/form-mini.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,14 @@ define([
206206

207207
switch (keyCode) {
208208
case $.ui.keyCode.HOME:
209-
if(this._getFirstVisibleElement()) {
209+
if (this._getFirstVisibleElement()) {
210210
this._getFirstVisibleElement().addClass(this.options.selectClass);
211211
this.responseList.selected = this._getFirstVisibleElement();
212212
}
213213
break;
214214

215215
case $.ui.keyCode.END:
216-
if(this._getFirstVisibleElement()) {
216+
if (this._getFirstVisibleElement()) {
217217
this._getLastElement().addClass(this.options.selectClass);
218218
this.responseList.selected = this._getLastElement();
219219
}

0 commit comments

Comments
 (0)