Sha256: 760bd37acaa59fe626968c67c7bb12c5c1b1a6db493ddc7173374e669cea9c29

Contents?: true

Size: 500 Bytes

Versions: 10

Compression:

Stored size: 500 Bytes

Contents

JSDOC.PluginManager.registerPlugin(
  "JSDOC.frameworkPrototype",
  {
    onPrototypeClassCreate: function(classCreator) {
      var desc = "";
      if (classCreator.comment) {
        desc = classCreator.comment;
      }
      var insert = desc+"/** @name "+classCreator.name+"\n@constructor\n@scope "+classCreator.name+".prototype */"
      
      insert = insert.replace(/\*\/\/\*\*/g, "\n");
      /*DEBUG*///print("insert is "+insert);
      classCreator.addComment.data = insert;
    }
  }
);

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
sproutcore-0.9.15 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.14 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.17 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.19 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.16 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.18 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.20 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.23 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.21 jsdoc/app/plugins/frameworkPrototype.js
sproutcore-0.9.22 jsdoc/app/plugins/frameworkPrototype.js