You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

f1a04e4a371dbfa46ecd402572847d54.json 591 B

3 vuotta sitten
1
  1. {"ast":null,"code":"export function getSize(scrollbar) {\n var containerEl = scrollbar.containerEl,\n contentEl = scrollbar.contentEl;\n return {\n container: {\n // requires `overflow: hidden`\n width: containerEl.clientWidth,\n height: containerEl.clientHeight\n },\n content: {\n // border width should be included\n width: contentEl.offsetWidth - contentEl.clientWidth + contentEl.scrollWidth,\n height: contentEl.offsetHeight - contentEl.clientHeight + contentEl.scrollHeight\n }\n };\n}","map":null,"metadata":{},"sourceType":"module"}