mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 07:18:39 +08:00
8be4c384bb
Improved settings screens Views: * sDefaultScope & sCurrentScope to sub-class keyScope * drop viewModelVisible * rename viewModelTemplateID to templateID * rename viewModelPosition to viewType
8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
import ko from 'ko';
|
|
import { Settings } from 'Common/Globals';
|
|
|
|
export class AboutAdminSettings /*extends AbstractViewSettings*/ {
|
|
constructor() {
|
|
this.version = ko.observable(Settings.app('version'));
|
|
}
|
|
}
|