added profile view
This commit is contained in:
parent
0728d2e669
commit
fa62ef3629
12 changed files with 539 additions and 68 deletions
|
@ -87,6 +87,15 @@ define(function() {
|
|||
}
|
||||
}
|
||||
|
||||
HostApp.showProfileForEntity = function(entity) {
|
||||
|
||||
if (OS_TYPE == "mac") {
|
||||
controller.showProfileForEntity_(entity);
|
||||
} else {
|
||||
controller.showProfileForEntity(entity);
|
||||
}
|
||||
}
|
||||
|
||||
HostApp.notificateUserAboutMention = function(text, name, post_id, entity) {
|
||||
if (OS_TYPE == "mac") {
|
||||
controller.notificateUserAboutMention_fromName_withPostId_andEntity_(text, name, post_id, entity);
|
||||
|
|
Reference in a new issue