Skip to content

Commit

Permalink
Fix my merge error from the merge from remote-tracking branch 'cpascu…
Browse files Browse the repository at this point in the history
…/gridster.js/faux-rows-patch'
  • Loading branch information
David Morse committed Apr 9, 2015
1 parent 8f6d18e commit 0862812
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.gridster.js
Original file line number Diff line number Diff line change
Expand Up @@ -4290,7 +4290,7 @@
this.gridmap[col] = [];
}

if (typeof this.gridmap[col][row] === undefined) {
if (typeof this.gridmap[col][row] === 'undefined') {
this.gridmap[col][row] = false;
}
this.faux_grid.push(coords);
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.gridster.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.gridster.with-extras.js
Original file line number Diff line number Diff line change
Expand Up @@ -4290,7 +4290,7 @@
this.gridmap[col] = [];
}

if (typeof this.gridmap[col][row] === undefined) {
if (typeof this.gridmap[col][row] === 'undefined') {
this.gridmap[col][row] = false;
}
this.faux_grid.push(coords);
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.gridster.with-extras.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/jquery.gridster.js
Original file line number Diff line number Diff line change
Expand Up @@ -3413,7 +3413,7 @@
this.gridmap[col] = [];
}

if (typeof this.gridmap[col][row] === undefined) {
if (typeof this.gridmap[col][row] === 'undefined') {
this.gridmap[col][row] = false;
}
this.faux_grid.push(coords);
Expand Down

0 comments on commit 0862812

Please sign in to comment.