mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-03-22 13:10:41 +08:00
10 lines
263 B
JavaScript
10 lines
263 B
JavaScript
JSDOC.PluginManager.registerPlugin(
|
|
"JSDOC.functionCall",
|
|
{
|
|
onFunctionCall: function(functionCall) {
|
|
if (functionCall.name == "dojo.define" && functionCall.arg1) {
|
|
functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
|
|
}
|
|
}
|
|
}
|
|
); |