forked from Botanical/BotanJS
16 lines
426 B
JavaScript
16 lines
426 B
JavaScript
/** @constructor */
|
|
Dandelion.Window = function() {};
|
|
|
|
/** @type {number} */
|
|
Dandelion.Window.prototype.scrollTop;
|
|
/** @type {number} */
|
|
Dandelion.Window.prototype.scrollLeft;
|
|
/** @type {number} */
|
|
Dandelion.Window.prototype.scrollWidth;
|
|
/** @type {number} */
|
|
Dandelion.Window.prototype.scrollHeight;
|
|
/** @type {number} */
|
|
Dandelion.Window.prototype.clientWidth;
|
|
/** @type {number} */
|
|
Dandelion.Window.prototype.clientHeight;
|