mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
first-commit
This commit is contained in:
commit
325c322a27
207 changed files with 35989 additions and 0 deletions
23
doc/jsdoc-toolkit/app/test/namespace_nested.js
Normal file
23
doc/jsdoc-toolkit/app/test/namespace_nested.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
/**
|
||||
@namespace This is the first namespace.
|
||||
*/
|
||||
ns1 = {};
|
||||
|
||||
/**
|
||||
This is the second namespace.
|
||||
@namespace
|
||||
*/
|
||||
ns1.ns2 = {};
|
||||
|
||||
/**
|
||||
This part of ns1.ns2
|
||||
@constructor
|
||||
*/
|
||||
ns1.ns2.Function1 = function() {
|
||||
};
|
||||
|
||||
ns1.staticFunction = function() {
|
||||
};
|
||||
|
||||
/** A static field in a namespace. */
|
||||
ns1.ns2.staticField = 1;
|
Loading…
Add table
Add a link
Reference in a new issue