Make frameState property of ol.MapEvent exportable

This commit is contained in:
Tim Schaub
2014-06-03 12:45:45 -06:00
parent 0f04236fc4
commit a9fc53e8da

View File

@@ -44,7 +44,9 @@ ol.MapEvent = function(type, map, opt_frameState) {
this.map = map;
/**
* The frame state at the time of the event.
* @type {?olx.FrameState}
* @todo api
*/
this.frameState = goog.isDef(opt_frameState) ? opt_frameState : null;