mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-05 11:34:54 +01:00
28 lines
662 B
JavaScript
28 lines
662 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
kn = require('App:Knoin'),
|
|
AbstractSystemDropDownViewModel = require('View:RainLoop:AbstractSystemDropDown')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractSystemDropDownViewModel
|
|
*/
|
|
function SettingsSystemDropDownViewModel()
|
|
{
|
|
AbstractSystemDropDownViewModel.call(this);
|
|
kn.constructorEnd(this);
|
|
}
|
|
|
|
kn.extendAsViewModel(['View:RainLoop:SettingsSystemDropDown', 'SettingsSystemDropDownViewModel'], SettingsSystemDropDownViewModel);
|
|
_.extend(SettingsSystemDropDownViewModel.prototype, AbstractSystemDropDownViewModel.prototype);
|
|
|
|
module.exports = SettingsSystemDropDownViewModel;
|
|
|
|
}()); |