sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Fri, 02 Mar 2012 13:25:07 +0100
branchcinecast-traces
changeset 824 caed06b21f77
parent 520 fe008e95a716
permissions -rw-r--r--
commit before merge

JSDOC.PluginManager.registerPlugin(
	"JSDOC.functionCall",
	{
		onFunctionCall: function(functionCall) {
			if (functionCall.name == "dojo.define" && functionCall.arg1) {
				functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
			}
		}
	}
);