UNPKG

intro.js

Version:

User Onboarding and Product Walkthrough Library

11 lines (10 loc) 251 B
/** * Provides a cross-browser way to get the screen dimensions * via: http://stackoverflow.com/questions/5864467/internet-explorer-innerheight * * @api private */ export default function getWinSize(): { width: number; height: number; };