mirror of
https://github.com/mapgears/ol3-google-maps.git
synced 2026-01-25 16:50:49 +00:00
16 lines
268 B
JavaScript
16 lines
268 B
JavaScript
|
|
|
|
/**
|
|
* Handle the api annotation.
|
|
* @param {Object} dictionary The tag dictionary.
|
|
*/
|
|
exports.defineTags = function(dictionary) {
|
|
|
|
dictionary.defineTag('api', {
|
|
onTagged: function(doclet, tag) {
|
|
doclet.api = tag.text || 'experimental';
|
|
}
|
|
});
|
|
|
|
};
|