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.
14 lines
435 B
14 lines
435 B
/* =======================================================================
|
|
File: static/js/helpers.js
|
|
Purpose:
|
|
Shared DOM helpers for all JS files.
|
|
======================================================================= */
|
|
|
|
window.$ = (sel) => document.querySelector(sel);
|
|
window.$$ = (sel) => document.querySelectorAll(sel);
|
|
|
|
window.autoScroll = function (el) {
|
|
if (!el) return;
|
|
el.scrollTop = el.scrollHeight;
|
|
};
|