Add ol.source.Source#dispatchChangeEvent

This commit is contained in:
Tom Payne
2013-08-21 12:29:28 +02:00
parent 554a725d1a
commit 788ac5f41d

View File

@@ -49,6 +49,14 @@ ol.source.Source = function(options) {
goog.inherits(ol.source.Source, goog.events.EventTarget);
/**
* @protected
*/
ol.source.Source.prototype.dispatchChangeEvent = function() {
this.dispatchEvent(goog.events.EventType.CHANGE);
};
/**
* @protected
*/