fixing problems with new post
This commit is contained in:
parent
3fff224924
commit
16d7016e29
10 changed files with 851 additions and 807 deletions
|
@ -85,13 +85,12 @@ define(function() {
|
|||
}
|
||||
}
|
||||
|
||||
HostApp.openNewMessageWidow = function(entity, status_id, string, is_private) {
|
||||
HostApp.openNewMessageWidow = function(status) {
|
||||
|
||||
if (OS_TYPE == "mac") {
|
||||
controller.openNewMessageWindowInReplyTo_statusId_withString_isPrivate_(entity, status_id, string, is_private);
|
||||
controller.openNewMessageWindowInReplyToStatus(JSON.stringify(status));
|
||||
} else {
|
||||
is_private = is_private == true
|
||||
controller.openNewMessageWindowInReplyTostatusIdwithStringIsPrivate(entity, status_id, string, is_private);
|
||||
controller.openNewMessageWindowInReplyTostatus(JSON.stringify(status));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue