substance
Version:
Substance is a JavaScript library for web-based content editing. It provides building blocks for realizing custom text editors and web-based publishing system. It is developed to power our online editing platform [Substance](http://substance.io).
13 lines (12 loc) • 369 B
JavaScript
export default function getRelativeRect (parentRect, childRect) {
var left = childRect.left - parentRect.left
var top = childRect.top - parentRect.top
return {
left: left,
top: top,
right: parentRect.width - left - childRect.width,
bottom: parentRect.height - top - childRect.height,
width: childRect.width,
height: childRect.height
}
}