Skip to content

Commit 3811df9

Browse files
committed
Fix minor error leading to build-failure with JSLint.
1 parent 1af5bf2 commit 3811df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/extras/Sync.TabPane.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ Extras.Sync.TabPane = Core.extend(Echo.Render.ComponentSync, {
11341134
if (e.keyCode == 37) {
11351135
// left
11361136
if (activeTabIx != -1) {
1137-
if (activeTabIx == 0) {
1137+
if (activeTabIx === 0) {
11381138
this.component.doTabSelect(this._tabs[this._tabs.length - 1].id);
11391139
} else {
11401140
this.component.doTabSelect(this._tabs[activeTabIx - 1].id);

0 commit comments

Comments
 (0)