1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-27 07:45:08 +02:00
keeweb/app/scripts/views/settings/settings-about-view.js
2019-10-26 22:56:36 +02:00

23 lines
643 B
JavaScript

import { View } from 'framework/views/view';
import { RuntimeInfo } from 'const/runtime-info';
import { Links } from 'const/links';
import { Features } from 'util/features';
import template from 'templates/settings/settings-about.hbs';
class SettingsAboutView extends View {
template = template;
render() {
super.render({
version: RuntimeInfo.version,
licenseLink: Links.License,
licenseLinkApache: Links.LicenseApache,
repoLink: Links.Repo,
donationLink: Links.Donation,
isDesktop: Features.isDesktop
});
}
}
export { SettingsAboutView };