sbin/res/jsdoc/app/plugins/functionCall.js
author hamidouk
Tue, 31 Jan 2012 17:22:10 +0100
branchnih-youtube
changeset 756 f971fb0f2a3e
parent 520 fe008e95a716
permissions -rw-r--r--
more work on the youtube rewrite front.

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