mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-27 03:10:36 -06:00
22 lines
740 B
JavaScript
22 lines
740 B
JavaScript
'use strict';
|
|
const { remote } = require('electron');
|
|
|
|
renderDom();
|
|
|
|
/**
|
|
* Method that renders application data
|
|
*/
|
|
function renderDom() {
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
const applicationName = remote.app.getName() || 'Symphony';
|
|
const version = remote.app.getVersion();
|
|
let appName = document.getElementById('app-name');
|
|
let versionText = document.getElementById('version');
|
|
let copyright = document.getElementById('copyright');
|
|
|
|
appName.innerHTML = applicationName;
|
|
versionText.innerHTML = version ? `Version ${version} (${version})` : null;
|
|
copyright.innerHTML = `Copyright © ${new Date().getFullYear()} ${applicationName}`
|
|
});
|
|
}
|