Move plugins one level up so they can be used by other configurations

This commit is contained in:
Andreas Hocevar
2014-07-31 16:34:57 +02:00
parent b6fa8908e5
commit 8e6711835c
3 changed files with 2 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
/**
* 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';
}
});
};