travel/admin/node_modules/JSV/jsdoc-toolkit/app/plugins/functionCall.js

10 lines
263 B
JavaScript
Raw Normal View History

2024-06-24 11:28:18 +08:00
JSDOC.PluginManager.registerPlugin(
"JSDOC.functionCall",
{
onFunctionCall: function(functionCall) {
if (functionCall.name == "dojo.define" && functionCall.arg1) {
functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
}
}
}
);