sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Tue, 07 Feb 2012 14:52:39 +0100
branchpopcorn-port
changeset 787 e8e73fddb5ac
parent 520 fe008e95a716
permissions -rw-r--r--
Dailymotion player doesn't autostart video

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