Merge pull request #4102 from fredj/ol.Observable_dispatchEvent

Export ol.Observable#dispatchEvent function
This commit is contained in:
Frédéric Junod
2015-10-15 12:53:41 +02:00

View File

@@ -61,6 +61,18 @@ ol.Observable.prototype.changed = function() {
*/
/**
* Dispatches an event and calls all listeners listening for events
* of this type. The event parameter can either be a string or an
* Object with a `type` property.
*
* @param {goog.events.EventLike} event Event object.
* @function
* @api
*/
ol.Observable.prototype.dispatchEvent;
/**
* Get the version number for this object. Each time the object is modified,
* its version number will be incremented.