fixing problems with new post

This commit is contained in:
jeena 2013-07-17 00:44:47 +02:00
parent 3fff224924
commit 16d7016e29
10 changed files with 851 additions and 807 deletions

View file

@ -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));
}
}