mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 06:52:20 +08:00
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
*/
|
||
|
function AdminAbout()
|
||
|
{
|
||
|
this.version = ko.observable(RL.settingsGet('Version'));
|
||
|
}
|
||
|
|
||
|
Utils.addSettingsViewModel(AdminAbout, 'AdminSettingsAbout', 'About', 'about');
|
||
|
|
||
|
//AdminAbout.prototype.onBuild = function ()
|
||
|
//{
|
||
|
//
|
||
|
//};
|