From 56e871f8b59d32980bd8dba441cbee1ed6cdc0a1 Mon Sep 17 00:00:00 2001 From: Ryan Curry Date: Thu, 2 Jul 2015 12:23:05 -0700 Subject: [PATCH] Update graticule.js - fixed typo/build error Corrected reference to variable frameState - it was misspelled by the previous commit. --- src/ol/graticule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/graticule.js b/src/ol/graticule.js index 2ee6ecc1a5..e3585a1ea4 100644 --- a/src/ol/graticule.js +++ b/src/ol/graticule.js @@ -356,7 +356,7 @@ ol.Graticule.prototype.getParallels = function() { ol.Graticule.prototype.handlePostCompose_ = function(e) { var vectorContext = e.vectorContext; var frameState = e.frameState; - var extent = framteState.extent; + var extent = frameState.extent; var viewState = frameState.viewState; var center = viewState.center; var projection = viewState.projection;