Use @api annotation instead of @todo api

This commit is contained in:
Tim Schaub
2014-07-05 15:41:14 -04:00
parent 297503e7c9
commit 4cf5ab4620
155 changed files with 759 additions and 757 deletions

View File

@@ -9,7 +9,7 @@ goog.require('ol.easing');
/**
* @param {olx.animation.BounceOptions} options Bounce options.
* @return {ol.PreRenderFunction} Pre-render function.
* @todo api
* @api
*/
ol.animation.bounce = function(options) {
var resolution = options.resolution;
@@ -44,7 +44,7 @@ ol.animation.bounce = function(options) {
/**
* @param {olx.animation.PanOptions} options Pan options.
* @return {ol.PreRenderFunction} Pre-render function.
* @todo api
* @api
*/
ol.animation.pan = function(options) {
var source = options.source;
@@ -83,7 +83,7 @@ ol.animation.pan = function(options) {
/**
* @param {olx.animation.RotateOptions} options Rotate options.
* @return {ol.PreRenderFunction} Pre-render function.
* @todo api
* @api
*/
ol.animation.rotate = function(options) {
var sourceRotation = goog.isDef(options.rotation) ? options.rotation : 0;
@@ -128,7 +128,7 @@ ol.animation.rotate = function(options) {
/**
* @param {olx.animation.ZoomOptions} options Zoom options.
* @return {ol.PreRenderFunction} Pre-render function.
* @todo api
* @api
*/
ol.animation.zoom = function(options) {
var sourceResolution = options.resolution;