mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-05 17:15:04 -05:00
57 lines
1.1 KiB
JavaScript
57 lines
1.1 KiB
JavaScript
/*global $, app, me*/
|
|
"use strict";
|
|
|
|
var _ = require('underscore');
|
|
var HumanView = require('human-view');
|
|
|
|
|
|
module.exports = HumanView.extend({
|
|
show: function (animation) {
|
|
var self = this;
|
|
|
|
$('body').scrollTop(0);
|
|
|
|
if (this.detached) {
|
|
this.$('#pages').append(this.el);
|
|
this.detached = false;
|
|
} else {
|
|
this.render();
|
|
}
|
|
|
|
this.$el.addClass('active');
|
|
|
|
app.currentPage = this;
|
|
|
|
document.title = function () {
|
|
var title = _.result(self, 'title');
|
|
return title ? title + '- OTalk' : 'OTalk';
|
|
}();
|
|
|
|
this.trigger('pageloaded');
|
|
|
|
if (this.model.jid) {
|
|
me.setActiveContact(this.model.jid);
|
|
}
|
|
|
|
return this;
|
|
},
|
|
hide: function () {
|
|
var self = this;
|
|
|
|
this.$el.removeClass('active');
|
|
|
|
this.trigger('pageunloaded');
|
|
|
|
if (this.cache) {
|
|
this.$el.detach();
|
|
this.detached = true;
|
|
} else {
|
|
this.animateRemove();
|
|
}
|
|
|
|
me.setActiveContact('');
|
|
|
|
return this;
|
|
}
|
|
});
|