sbin/res/jsdoc/app/plugins/functionCall.js
author cavaliet
Mon, 16 Apr 2012 15:44:54 +0200
changeset 861 05f75ca6b5de
parent 520 fe008e95a716
permissions -rw-r--r--
Add slide share widget.

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