mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 13:46:09 +03: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 */";
|
|
}
|
|
}
|
|
}
|
|
); |