sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Mon, 16 Apr 2012 14:21:57 +0200
changeset 863 dc5e0ea0093c
parent 520 fe008e95a716
permissions -rw-r--r--
minor ie8 bugfixes

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