mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-03 03:24:42 +00:00
16 lines
220 B
JavaScript
16 lines
220 B
JavaScript
|
|
/**
|
||
|
|
* @constructor
|
||
|
|
*/
|
||
|
|
function Outer() {
|
||
|
|
/**
|
||
|
|
* @constructor
|
||
|
|
*/
|
||
|
|
function Inner(name) {
|
||
|
|
/** The name of this. */
|
||
|
|
this.name = name;
|
||
|
|
}
|
||
|
|
|
||
|
|
this.open = function(name) {
|
||
|
|
return (new Inner(name));
|
||
|
|
}
|
||
|
|
}
|