etherpad-lite/doc/jsdoc-toolkit/app/plugins/functionCall.js

10 lines
263 B
JavaScript
Raw Normal View History

2011-03-26 14:10:41 +01:00
JSDOC.PluginManager.registerPlugin(
"JSDOC.functionCall",
{
onFunctionCall: function(functionCall) {
if (functionCall.name == "dojo.define" && functionCall.arg1) {
functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
}
}
}
);