fixed paging

This commit is contained in:
jeena 2013-07-22 14:00:43 +02:00
parent ec43a38b86
commit 0bf0324702
2 changed files with 51 additions and 43 deletions

View file

@ -55,7 +55,7 @@ function(HostApp, Timeline, URI, APICalls, Core) {
this.is_not_init = true;
}
Mentions.prototype.getNewData = function(add_to_search, append) {
Mentions.prototype.getNewData = function(add_to_search, append, query) {
add_to_search = add_to_search || {};
@ -63,7 +63,7 @@ function(HostApp, Timeline, URI, APICalls, Core) {
add_to_search["mentions"] = HostApp.stringForKey("entity");
}
Timeline.prototype.getNewData.call(this, add_to_search, append);
Timeline.prototype.getNewData.call(this, add_to_search, append, query);
//this.getLatestMentionRead();
}