diff options
author | friendica <info@friendica.com> | 2012-12-13 04:06:56 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-13 04:06:56 -0800 |
commit | 4e192b108d9ba3837ae881799b4376550a476ebf (patch) | |
tree | f63255cc0d3260e8a8bedf4aa914dcc237bb704c /js/main.js | |
parent | 6e363ed0c8f5a1f3e63c7f1984542ef182d79d84 (diff) | |
download | volse-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.js | 4 |
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(); } |