mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-05 11:34:54 +01:00
Fixed owncloud password encoder/decoder (#291) Fixed ckeditor in ownCloud iframe (Closes #302) Release commit
29 lines
640 B
JavaScript
29 lines
640 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
kn = require('Knoin/Knoin'),
|
|
AbstractSystemDropDownViewModel = require('View/App/AbstractSystemDropDown')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractSystemDropDownViewModel
|
|
*/
|
|
function SystemDropDownMailBoxAppView()
|
|
{
|
|
AbstractSystemDropDownViewModel.call(this);
|
|
kn.constructorEnd(this);
|
|
}
|
|
|
|
kn.extendAsViewModel(['View/App/MailBox/SystemDropDown', 'MailBoxSystemDropDownViewModel'], SystemDropDownMailBoxAppView);
|
|
_.extend(SystemDropDownMailBoxAppView.prototype, AbstractSystemDropDownViewModel.prototype);
|
|
|
|
module.exports = SystemDropDownMailBoxAppView;
|
|
|
|
}());
|