projects
/
dygraphs.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
Closure fix; force cast from Element to Node.
[dygraphs.git]
/
jsdoc-toolkit
/
app
/
test
/
static_this.js
Commit
Line
Data
629a09ae
DV
1
/** the parent */
2
var box = {};
3
4
/** @namespace */
5
box.holder = {}
6
7
box.holder.foo = function() {
8
/** the counter */
9
this.counter = 1;
10
}
11
12
box.holder.foo();
13
print(box.holder.counter);