first changes to 1 window on Linux
This commit is contained in:
parent
682c60df2d
commit
c6220b1dc1
25 changed files with 346 additions and 69 deletions
|
@ -14,15 +14,15 @@ function(HostApp, Core, Paths, URI) {
|
|||
|
||||
this.action = "conversation";
|
||||
|
||||
document.body.innerHTML = "";
|
||||
|
||||
this.body = document.createElement("ol");
|
||||
this.body.className = this.action;
|
||||
document.body.appendChild(this.body);
|
||||
|
||||
document.getElementById("content").appendChild(this.body);
|
||||
this.hide();
|
||||
}
|
||||
|
||||
Conversation.prototype = Object.create(Core.prototype);
|
||||
|
||||
|
||||
|
||||
Conversation.addStatus = function(status) {
|
||||
|
||||
|
|
Reference in a new issue