@gechiui/dom
Version:
DOM utilities module for GeChiUI.
17 lines (15 loc) • 456 B
JavaScript
/**
* Internal dependencies
*/
import isEdge from './is-edge';
/**
* Check whether the selection is vertically at the edge of the container.
*
* @param {Element} container Focusable element.
* @param {boolean} isReverse Set to true to check top, false for bottom.
*
* @return {boolean} True if at the vertical edge, false if not.
*/
export default function isVerticalEdge( container, isReverse ) {
return isEdge( container, isReverse, true );
}