Skip to content

Commit

Permalink
Fix a null check in a touch event handler that was too restrictive.
Browse files Browse the repository at this point in the history
  • Loading branch information
edhager committed Jan 26, 2018
1 parent 87e02af commit 4f09aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ColumnSet.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ define([
}
}),
on(target, getTouchEventName('move'), function (event) {
if (grid._currentlyTouchedColumnSet === null) {
if (grid._currentlyTouchedColumnSet == null) {
return;
}
var node = findParentColumnSet(event.target);
Expand Down

0 comments on commit 4f09aed

Please sign in to comment.