mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 00:08:18 +08:00
21 lines
627 B
JavaScript
21 lines
627 B
JavaScript
|
|
var
|
|
_ = require('_'),
|
|
|
|
kn = require('Knoin/Knoin'),
|
|
AbstractSystemDropDownUserView = require('View/User/AbstractSystemDropDown');
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractSystemDropDownUserView
|
|
*/
|
|
function SystemDropDownSettingsUserView()
|
|
{
|
|
AbstractSystemDropDownUserView.call(this);
|
|
kn.constructorEnd(this);
|
|
}
|
|
|
|
kn.extendAsViewModel(['View/User/Settings/SystemDropDown', 'View/App/Settings/SystemDropDown', 'SettingsSystemDropDownViewModel'], SystemDropDownSettingsUserView);
|
|
_.extend(SystemDropDownSettingsUserView.prototype, AbstractSystemDropDownUserView.prototype);
|
|
|
|
module.exports = SystemDropDownSettingsUserView;
|