sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Wed, 03 Apr 2013 15:40:58 +0200
changeset 995 37a4566bb7ee
parent 520 fe008e95a716
permissions -rw-r--r--
Updated jQuery/jQueryUI

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