mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-09 06:28:28 +03:00
16 lines
322 B
JavaScript
16 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 ()
|
|
//{
|
|
//
|
|
//};
|