aboutsummaryrefslogtreecommitdiffstats
path: root/js/main.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-13 04:06:56 -0800
committerfriendica <info@friendica.com>2012-12-13 04:06:56 -0800
commit4e192b108d9ba3837ae881799b4376550a476ebf (patch)
treef63255cc0d3260e8a8bedf4aa914dcc237bb704c /js/main.js
parent6e363ed0c8f5a1f3e63c7f1984542ef182d79d84 (diff)
downloadvolse-hubzilla-4e192b108d9ba3837ae881799b4376550a476ebf.tar.gz
volse-hubzilla-4e192b108d9ba3837ae881799b4376550a476ebf.tar.bz2
volse-hubzilla-4e192b108d9ba3837ae881799b4376550a476ebf.zip
templatise the building of page queries so we can re-use it elsewhere
Diffstat (limited to 'js/main.js')
-rw-r--r--js/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/main.js b/js/main.js
index 18924834d..116cd5aeb 100644
--- a/js/main.js
+++ b/js/main.js
@@ -447,11 +447,11 @@ function updateConvItems(mode,data) {
if(typeof buildCmd == 'function') {
if(scroll_next) {
- network_page = next_page;
+ bParam_page = next_page;
page_load = true;
}
else {
- network_page = 1;
+ bParam_page = 1;
}
update_url = buildCmd();
}