sbin/res/jsdoc/app/plugins/functionCall.js
author cavaliet
Fri, 27 Apr 2012 11:52:05 +0200
changeset 879 85da59ccbdf8
parent 520 fe008e95a716
permissions -rw-r--r--
Update SlideShareWidget with buttons down the slides. Synchro can be disabled/enabled.

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