fixed problems with scroll to load more
This commit is contained in:
parent
624dd9a1b9
commit
be8a0c63e3
10 changed files with 101 additions and 45 deletions
|
@ -95,6 +95,14 @@ define(function() {
|
|||
}
|
||||
}
|
||||
|
||||
HostApp.showConversationViewForPostIdandEntity = function(id, entity) {
|
||||
if (OS_TYPE == "mac") {
|
||||
controller.showConversationViewForPostId_andEntity_(id, entity);
|
||||
} else {
|
||||
controller.showConversationViewForPostIdandEntity(id, entity);
|
||||
}
|
||||
}
|
||||
|
||||
HostApp.showProfileForEntity = function(entity) {
|
||||
|
||||
if (OS_TYPE == "mac") {
|
||||
|
|
Reference in a new issue