sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Fri, 20 Jul 2012 17:15:53 +0200
branchnew-model
changeset 928 5aadbc9f27cd
parent 520 fe008e95a716
permissions -rw-r--r--
First tests before allowing mashup annotation

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