projects
/
dygraphs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Make a table view out of the test results for easier reading.
[dygraphs.git]
/
jsdoc-toolkit
/
app
/
plugins
/
functionCall.js
1
JSDOC
.
PluginManager
.
registerPlugin
(
2
"JSDOC.functionCall"
,
3
{
4
onFunctionCall
:
function
(
functionCall
) {
5
if
(
functionCall
.
name
==
"dojo.define"
&&
functionCall
.
arg1
) {
6
functionCall
.
doc
=
"/** @lends "
+
eval
(
functionCall
.
arg1
)+
".prototype */"
;
7
}
8
}
9
}
10
);