From 4eab46e41b8d59b1cc03836b3ad65f3e62d9fb0d Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 12 Jun 2014 14:43:49 +0200 Subject: [PATCH] Mark abstract method as function for JSDoc to pick it up This leaves aside the question whether getImage needs to be defined as abstract method in a base class that does not know about images, but at least it makes the documentation appear correctly in ol.tile.Image. --- src/ol/tile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ol/tile.js b/src/ol/tile.js index 4d13e0658b..de2b6ef6cd 100644 --- a/src/ol/tile.js +++ b/src/ol/tile.js @@ -56,6 +56,7 @@ ol.Tile.prototype.dispatchChangeEvent = function() { /** + * @function * @param {Object=} opt_context Object. * @return {HTMLCanvasElement|HTMLImageElement|HTMLVideoElement} Image. */