mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-03-29 12:10:23 +00:00
14 lines
185 B
JavaScript
14 lines
185 B
JavaScript
|
|
/** the parent */
|
||
|
|
var box = {};
|
||
|
|
|
||
|
|
/** @namespace */
|
||
|
|
box.holder = {}
|
||
|
|
|
||
|
|
box.holder.foo = function() {
|
||
|
|
/** the counter */
|
||
|
|
this.counter = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
box.holder.foo();
|
||
|
|
print(box.holder.counter);
|