mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
28 lines
684 B
JavaScript
28 lines
684 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
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;
|
|
|
|
}());
|