projects
/
dygraphs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
clear generated jsdoc; add script
[dygraphs.git]
/
jsdoc-toolkit
/
app
/
test
/
augments.js
1
/**
2
@constructor
3
*/
4
function
Layout
(
p
) {
5
this
.
init
=
function
(
p
) {
6
}
7
8
this
.
getId
=
function
() {
9
}
10
11
/** @type Page */
12
this
.
orientation
=
"landscape"
;
13
}
14
15
/**
16
@constructor
17
@augments Layout
18
*/
19
function
Page
() {
20
this
.
reset
=
function
(
b
) {
21
}
22
}
23
24
/**
25
@extends Page
26
@constructor
27
*/
28
function
ThreeColumnPage
() {
29
this
.
init
=
function
(
resetCode
) {
30
}
31
}