Merge pull request #746 from mrcslws/wrong-gap-edge-point
[dygraphs.git] / jsdoc-toolkit / app / test / static_this.js
CommitLineData
629a09ae
DV
1/** the parent */
2var box = {};
3
4/** @namespace */
5box.holder = {}
6
7box.holder.foo = function() {
8 /** the counter */
9 this.counter = 1;
10}
11
12box.holder.foo();
13print(box.holder.counter);