Skip to content

Instantly share code, notes, and snippets.

@afterburn
Created October 30, 2018 13:22
Show Gist options
  • Save afterburn/a752b59172751c6900990f659cfb4481 to your computer and use it in GitHub Desktop.
Save afterburn/a752b59172751c6900990f659cfb4481 to your computer and use it in GitHub Desktop.
Polyfill for cross browser getBoundingClientRect function
Element.prototype._getBoundingClientRect = Element.prototype.getBoundingClientRect
Element.prototype.getBoundingClientRect = function () {
const rect = Element.prototype._getBoundingClientRect.call(this)
rect.x = rect.left
rect.y = rect.top
return rect
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment