mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
13 lines
332 B
JavaScript
13 lines
332 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
* @extends AbstractSystemDropDownViewModel
|
||
|
*/
|
||
|
function SettingsSystemDropDownViewModel()
|
||
|
{
|
||
|
AbstractSystemDropDownViewModel.call(this);
|
||
|
}
|
||
|
|
||
|
_.extend(SettingsSystemDropDownViewModel.prototype, AbstractSystemDropDownViewModel.prototype);
|