sbin/res/jsdoc/app/plugins/functionCall.js
author cavaliet
Thu, 10 May 2012 18:36:38 +0200
changeset 886 ab69ff6fa02b
parent 520 fe008e95a716
permissions -rw-r--r--
correct js for embed bab player.

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