etherpad-lite/doc/jsdoc-toolkit/app/test/static_this.js

14 lines
185 B
JavaScript
Raw Normal View History

2011-03-26 14:10:41 +01:00
/** the parent */
var box = {};
/** @namespace */
box.holder = {}
box.holder.foo = function() {
/** the counter */
this.counter = 1;
}
box.holder.foo();
print(box.holder.counter);