c3nav.js no exception if there is no grid
This commit is contained in:
parent
e2698e7109
commit
c6d85052f0
1 changed files with 1 additions and 1 deletions
|
@ -1555,7 +1555,7 @@ L.SquareGridLayer = L.Layer.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
_updateGrid: function(map) {
|
_updateGrid: function(map) {
|
||||||
if (!this.cols.length) return;
|
if (!this.cols || this.cols.length) return;
|
||||||
var mapSize = map.getSize(),
|
var mapSize = map.getSize(),
|
||||||
sidebarStart = $('#sidebar').outerWidth() + 15,
|
sidebarStart = $('#sidebar').outerWidth() + 15,
|
||||||
searchHeight = $('#search').outerHeight() + 10,
|
searchHeight = $('#search').outerHeight() + 10,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue