mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-01 08:16:03 +00:00
Fixed owncloud password encoder/decoder (#291) Fixed ckeditor in ownCloud iframe (Closes #302) Release commit
28 lines
637 B
JavaScript
28 lines
637 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
kn = require('Knoin/Knoin'),
|
|
AbstractSystemDropDownAppView = require('View/App/AbstractSystemDropDown')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractSystemDropDownAppView
|
|
*/
|
|
function SystemDropDownSettingsAppView()
|
|
{
|
|
AbstractSystemDropDownAppView.call(this);
|
|
kn.constructorEnd(this);
|
|
}
|
|
|
|
kn.extendAsViewModel(['View/App/Settings/SystemDropDown', 'SettingsSystemDropDownViewModel'], SystemDropDownSettingsAppView);
|
|
_.extend(SystemDropDownSettingsAppView.prototype, AbstractSystemDropDownAppView.prototype);
|
|
|
|
module.exports = SystemDropDownSettingsAppView;
|
|
|
|
}()); |