angular.js 221 B

12345678910
  1. exports.defineTags = function(dictionary) {
  2. dictionary.defineTag('ngdoc', {
  3. mustHaveValue: true,
  4. onTagged : function(doclet, tag) {
  5. doclet.addTag('kind', 'class');
  6. doclet.ngdoc = tag.value;
  7. }
  8. });
  9. };