sbin/res/jsdoc/app/plugins/functionCall.js
author hamidouk
Tue, 10 Jan 2012 16:46:47 +0100
branchpopcorn-port
changeset 607 0b94ae49efbd
parent 520 fe008e95a716
permissions -rw-r--r--
added an option to force the redraw of a list, even if the cached lists are the same (which is the case when we just added another annotation)

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