mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 13:46:09 +03: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));
|
|
}
|
|
} |