fixed many things and added search
This commit is contained in:
parent
c6220b1dc1
commit
cbc6755791
10 changed files with 128 additions and 75 deletions
|
@ -22,6 +22,14 @@ function(HostApp, Core, Paths, URI) {
|
|||
}
|
||||
|
||||
Conversation.prototype = Object.create(Core.prototype);
|
||||
|
||||
Conversation.prototype.show = function() {
|
||||
Core.prototype.show.call(this, this.body);
|
||||
}
|
||||
|
||||
Conversation.prototype.hide = function() {
|
||||
Core.prototype.hide.call(this, this.body);
|
||||
}
|
||||
|
||||
|
||||
Conversation.addStatus = function(status) {
|
||||
|
|
Reference in a new issue