s/POST_RENDER/POSTRENDER/

This commit is contained in:
Tom Payne
2012-09-27 13:59:20 +02:00
parent d61a117787
commit ac0e02039c
2 changed files with 4 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ goog.require('ol.renderer.Layer');
* @enum {string}
*/
ol.MapEventType = {
POST_RENDER: 'postrender'
POSTRENDER: 'postrender'
};
@@ -616,7 +616,7 @@ ol.Map.prototype.renderFrame_ = function() {
if (goog.DEBUG) {
this.logger.info('postrender');
}
this.dispatchEvent(ol.MapEventType.POST_RENDER);
this.dispatchEvent(ol.MapEventType.POSTRENDER);
};