sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Mon, 14 May 2012 11:57:05 +0200
changeset 901 12b2cd7e9159
parent 520 fe008e95a716
permissions -rw-r--r--
Compatibility for tracemanager

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