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

@ -61,6 +61,15 @@ define(function() {
}
}
HostApp.showConversation = function(id, entity) {
if (OS_TYPE == "mac") {
controller.showConversationForPostId_andEntity_(id, entity);
} else {
controller.showConversationForPostIdandEntity(id, entity);
}
}
return HostApp;
});