Dashboard sipadu mbip
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

getDocumentHeight.js 246B

12345678
  1. /**
  2. * Get the height of the document
  3. *
  4. * @returns {documentHeight: number}
  5. */
  6. export default function (doc) {
  7. return Math.max(doc.documentElement.offsetHeight || 0, doc.height || 0, doc.body.scrollHeight || 0, doc.body.offsetHeight || 0);
  8. }