sbin/res/jsdoc/app/plugins/functionCall.js
author ymh <ymh.work@gmail.com>
Thu, 31 Dec 2015 15:51:09 +0100
changeset 1070 36517cb225fe
parent 520 fe008e95a716
permissions -rw-r--r--
increment platform version + version

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