Now showing the message contained in Requests on the correct pages.
Note that facilities to edit your message, and to perhaps change the message when accepting a request still need to be provided.
Fixes Issue 385.
JSDOC.PluginManager.registerPlugin(
"JSDOC.functionCall",
{
onFunctionCall: function(functionCall) {
if (functionCall.name == "dojo.define" && functionCall.arg1) {
functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
}
}
}
);