mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 15:33:59 +00:00
8de9bd3155
- create dummy menus - close to tray
11 lines
323 B
JavaScript
11 lines
323 B
JavaScript
window.addEventListener('DOMContentLoaded', () => {
|
|
const replaceText = (selector, text) => {
|
|
const element = document.getElementById(selector);
|
|
if (element) element.innerText = text;
|
|
};
|
|
|
|
for (const type of ['chrome', 'node', 'electron']) {
|
|
replaceText(`${type}-version`, process.versions[type]);
|
|
}
|
|
});
|