sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Wed, 21 Mar 2012 16:43:25 +0100
branchpopcorn-port
changeset 836 526f91f5253e
parent 520 fe008e95a716
permissions -rw-r--r--
Changes for Cinecast

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