mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 14:57:26 +08:00
26 lines
No EOL
630 B
JavaScript
26 lines
No EOL
630 B
JavaScript
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
|
|
|
(function (module, require) {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
kn = require('kn'),
|
|
AbstractSystemDropDownViewModel = require('./AbstractSystemDropDownViewModel.js')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractSystemDropDownViewModel
|
|
*/
|
|
function SettingsSystemDropDownViewModel()
|
|
{
|
|
AbstractSystemDropDownViewModel.call(this);
|
|
kn.constructorEnd(this);
|
|
}
|
|
|
|
kn.extendAsViewModel('SettingsSystemDropDownViewModel', SettingsSystemDropDownViewModel, AbstractSystemDropDownViewModel);
|
|
|
|
module.exports = SettingsSystemDropDownViewModel;
|
|
|
|
}(module, require)); |