Added conversation view

This commit is contained in:
Jeena Paradies 2012-11-09 21:16:52 +01:00
parent 6c05512285
commit fa2bda0394
13 changed files with 474 additions and 48 deletions

View file

@ -39,6 +39,12 @@ function start(view) {
} else if (view == "conversation") {
require(["controller/Conversation"], function(Conversation) {
tentia_instance = new Conversation();
});
}
}
@ -59,10 +65,12 @@ function loadPlugin(url) {
}
function debug(string) {
if (typeof string != "string") {
string = JSON.stringify(string);
}
alert("DEBUG: " + string);
}
setTimeout(HostAppGo, 1000);
setTimeout(HostAppGo, 2000);