sbin/res/jsdoc/app/plugins/functionCall.js
author cavaliet
Thu, 02 Jan 2014 16:54:22 +0100
changeset 1021 7253d4d06f0d
parent 520 fe008e95a716
permissions -rw-r--r--
update widgets after enhance in annotation platform.

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