2014-09-06 05:44:29 +08:00
|
|
|
|
|
|
|
(function () {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var
|
|
|
|
_ = require('_'),
|
|
|
|
|
|
|
|
kn = require('Knoin/Knoin'),
|
|
|
|
AbstractView = require('Knoin/AbstractView')
|
|
|
|
;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @constructor
|
|
|
|
* @extends AbstractView
|
|
|
|
*/
|
2014-10-18 21:43:44 +08:00
|
|
|
function PaneSettingsUserView()
|
2014-09-06 05:44:29 +08:00
|
|
|
{
|
|
|
|
AbstractView.call(this, 'Right', 'SettingsPane');
|
|
|
|
|
|
|
|
kn.constructorEnd(this);
|
|
|
|
}
|
|
|
|
|
2014-10-18 21:43:44 +08:00
|
|
|
kn.extendAsViewModel(['View/User/Settings/Pane', 'View/App/Settings/Pane', 'SettingsPaneViewModel'], PaneSettingsUserView);
|
|
|
|
_.extend(PaneSettingsUserView.prototype, AbstractView.prototype);
|
2014-09-06 05:44:29 +08:00
|
|
|
|
2014-10-18 21:43:44 +08:00
|
|
|
PaneSettingsUserView.prototype.onShow = function ()
|
2014-09-06 05:44:29 +08:00
|
|
|
{
|
2015-02-22 06:00:51 +08:00
|
|
|
require('Stores/User/Message').message(null);
|
2014-09-06 05:44:29 +08:00
|
|
|
};
|
|
|
|
|
2014-10-18 21:43:44 +08:00
|
|
|
PaneSettingsUserView.prototype.backToMailBoxClick = function ()
|
2014-09-06 05:44:29 +08:00
|
|
|
{
|
2015-02-22 06:00:51 +08:00
|
|
|
kn.setHash(require('Common/Links').inbox(
|
|
|
|
require('Storage/User/Cache').getFolderInboxName()));
|
2014-09-06 05:44:29 +08:00
|
|
|
};
|
|
|
|
|
2014-10-18 21:43:44 +08:00
|
|
|
module.exports = PaneSettingsUserView;
|
2014-09-06 05:44:29 +08:00
|
|
|
|
|
|
|
}());
|