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