We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
there seems to be a conflict with plax and bonzo:
when running with the following ender build
ender-js backbone qwery bonzo bean domready bowser ender-bootstrap ender-json browser-request morpheus plax
on page load i get:
TypeError: 'undefined' is not an object (evaluating 'el.style.position')
seems to raise a conflict within bonzo's dim function (line #8 below):
, dim: function () { if (!this.length) return { height: 0, width: 0 } var el = this[0] , orig = !el.offsetWidth && !el.offsetHeight ? // el isn't visible, can't be measured properly, so fix that function (t, s) { s = { position: el.style.position || '' , visibility: el.style.visibility || '' , display: el.style.display || '' } t.first().css({ position: 'absolute' , visibility: 'hidden' , display: 'block' }) return s }(this) : null , width = el.offsetWidth , height = el.offsetHeight orig && this.first().css(orig) return { height: height , width: width } }
The text was updated successfully, but these errors were encountered:
@ded this might be more your ballgame.
Sorry, something went wrong.
No branches or pull requests
there seems to be a conflict with plax and bonzo:
when running with the following ender build
on page load i get:
TypeError: 'undefined' is not an object (evaluating 'el.style.position')
seems to raise a conflict within bonzo's dim function (line #8 below):
The text was updated successfully, but these errors were encountered: