mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01: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));
|
||
|
}
|
||
|
}
|