Check for style property

This commit is contained in:
Raul Ochoa 2014-12-04 19:09:43 +01:00
parent 1cb891ef92
commit bf6537071a

View File

@ -36,9 +36,9 @@ CartoCSS.Layer.prototype = {
},
eval: function(prop) {
var p = this.shader[prop].style;
if (!p) return;
return p({}, { zoom: 0, 'frame-offset': 0 });
var p = this.shader[prop];
if (!p || !p.style) return;
return p.style({}, { zoom: 0, 'frame-offset': 0 });
},
/*