Skip to content

Commit 0862812

Browse files
author
David Morse
committed
Fix my merge error from the merge from remote-tracking branch 'cpascu/gridster.js/faux-rows-patch'
1 parent 8f6d18e commit 0862812

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dist/jquery.gridster.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4290,7 +4290,7 @@
42904290
this.gridmap[col] = [];
42914291
}
42924292

4293-
if (typeof this.gridmap[col][row] === undefined) {
4293+
if (typeof this.gridmap[col][row] === 'undefined') {
42944294
this.gridmap[col][row] = false;
42954295
}
42964296
this.faux_grid.push(coords);

dist/jquery.gridster.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.gridster.with-extras.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4290,7 +4290,7 @@
42904290
this.gridmap[col] = [];
42914291
}
42924292

4293-
if (typeof this.gridmap[col][row] === undefined) {
4293+
if (typeof this.gridmap[col][row] === 'undefined') {
42944294
this.gridmap[col][row] = false;
42954295
}
42964296
this.faux_grid.push(coords);

dist/jquery.gridster.with-extras.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/jquery.gridster.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3413,7 +3413,7 @@
34133413
this.gridmap[col] = [];
34143414
}
34153415

3416-
if (typeof this.gridmap[col][row] === undefined) {
3416+
if (typeof this.gridmap[col][row] === 'undefined') {
34173417
this.gridmap[col][row] = false;
34183418
}
34193419
this.faux_grid.push(coords);

0 commit comments

Comments
 (0)