Sha256: 6e7ebd5d48e978f27c1538b367dab5f92c4ecea28bcb310e18cf8eda3d932147
Contents?: true
Size: 606 Bytes
Versions: 71
Compression:
Stored size: 606 Bytes
Contents
JSDOC.PluginManager.registerPlugin( "JSDOC.sproutcoreTags", { onDocCommentTags: function(comment) { for (var i = 0, l = comment.tags.length; i < l; i++) { var title = comment.tags[i].title.toLowerCase(); var syn; if ((syn = JSDOC.sproutcoreTags.synonyms["="+title])) { comment.tags[i].title = syn; } } } } ); new Namespace( "JSDOC.sproutcoreTags", function() { JSDOC.sproutcoreTags.synonyms = { "=method": "function", "=delegate": "namespace", "=property": "field", "=singleton": "class" } } );
Version data entries
71 entries across 71 versions & 2 rubygems