fixes #86
This commit is contained in:
parent
fee541fd1d
commit
e07fa926b8
7 changed files with 62 additions and 25 deletions
|
@ -132,6 +132,14 @@ define(function() {
|
|||
return OS_TYPE == "mac" ? "OS X" : "Linux";
|
||||
}
|
||||
|
||||
HostApp.notificateViewsAboutDeletedPost = function(postId, entity) {
|
||||
if (OS_TYPE == "mac") {
|
||||
controller.notificateViewsAboutDeletedPostWithId_byEntity_(postId, entity);
|
||||
} else {
|
||||
controller.notificateViewsAboutDeletedPostWithIdbyEntity(postId, entity);
|
||||
}
|
||||
}
|
||||
|
||||
return HostApp;
|
||||
|
||||
});
|
Reference in a new issue