-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pages #2
Conversation
|
||
if (SEESAW.DEVELOPMENT) | ||
{ | ||
this._stats = new Stats(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'Stats' is not defined.
root._stats.begin(); | ||
} | ||
root.draw(); | ||
if (SEESAW.DEVELOPMENT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
var root = this; | ||
window.requestAnimationFrame(function () | ||
{ | ||
if (SEESAW.DEVELOPMENT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
SEESAW.RootComponent.prototype = Object.create(SEESAW.Component.prototype); | ||
SEESAW.RootComponent.prototype.constructor = SEESAW.RootComponent; | ||
|
||
SEESAW.RootComponent.prototype._run = function () |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
}; | ||
|
||
SEESAW.RootComponent.prototype = Object.create(SEESAW.Component.prototype); | ||
SEESAW.RootComponent.prototype.constructor = SEESAW.RootComponent; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
this._run(); | ||
}; | ||
|
||
SEESAW.RootComponent.prototype = Object.create(SEESAW.Component.prototype); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
|
||
this._div.css('box-sizing', 'border-box'); | ||
|
||
if (SEESAW.DEVELOPMENT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
this._div.css('position', 'relative'); | ||
|
||
this._div.css('font-size', SEESAW.getConfig('fontSize')); | ||
this._div.css('background', SEESAW.getConfig('background')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
this._div.css('height', zone.height()); | ||
this._div.css('position', 'relative'); | ||
|
||
this._div.css('font-size', SEESAW.getConfig('fontSize')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
*/ | ||
SEESAW.RootComponent = function () | ||
{ | ||
SEESAW.Component.call(this, 'seesaw-root'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
* @constructor | ||
* @extends SEESAW.Component | ||
*/ | ||
SEESAW.RootComponent = function () |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
/** | ||
* @returns {number|string} | ||
*/ | ||
SEESAW.Component.prototype.getFontWeight = function () |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
/** | ||
* @param {number|string} weight | ||
*/ | ||
SEESAW.Component.prototype.setFontWeight = function (weight) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
/** | ||
* @returns {string} | ||
*/ | ||
SEESAW.Component.prototype.getFontSize = function () |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
/** | ||
* @param {string|number} size | ||
*/ | ||
SEESAW.Component.prototype.setFontSize = function (size) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
/** | ||
* @returns {string} | ||
*/ | ||
SEESAW.Component.prototype.getFontFace = function () |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'SEESAW' is not defined.
No description provided.