mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-06-17 03:34:49 -04:00
first-commit
This commit is contained in:
commit
325c322a27
207 changed files with 35989 additions and 0 deletions
31
doc/jsdoc-toolkit/app/test/augments.js
Normal file
31
doc/jsdoc-toolkit/app/test/augments.js
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
@constructor
|
||||
*/
|
||||
function Layout(p) {
|
||||
this.init = function(p) {
|
||||
}
|
||||
|
||||
this.getId = function() {
|
||||
}
|
||||
|
||||
/** @type Page */
|
||||
this.orientation = "landscape";
|
||||
}
|
||||
|
||||
/**
|
||||
@constructor
|
||||
@augments Layout
|
||||
*/
|
||||
function Page() {
|
||||
this.reset = function(b) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@extends Page
|
||||
@constructor
|
||||
*/
|
||||
function ThreeColumnPage() {
|
||||
this.init = function(resetCode) {
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue