From 21b3dc9c27be50e73944eaec97001ad1279400f1 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 25 Jul 2012 19:45:45 -0700 Subject: tie the main slider to ajax updates and buildCmd --- js/main.js | 14 ++++++++++---- mod/network.php | 32 +++++++++++++++++--------------- view/main_slider.tpl | 6 ++++-- view/search_item.tpl | 2 +- view/wall_item.tpl | 4 ++-- view/wallwall_item.tpl | 2 +- 6 files changed, 35 insertions(+), 25 deletions(-) diff --git a/js/main.js b/js/main.js index 1feb7446e..1454dd0b5 100644 --- a/js/main.js +++ b/js/main.js @@ -327,13 +327,19 @@ function updateConvItems(mode,data) { in_progress = true; - var udargs = ((page_load) ? '/load' : ''); - page_load = false; + var update_url; - var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page + '&msie=' + ((msie) ? 1 : 0); + if(typeof buildCmd == 'function') { + update_url = buildCmd(); + } + else { + var udargs = ((page_load) ? '/load' : ''); + update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page + '&msie=' + ((msie) ? 1 : 0); + } $.get(update_url,function(data) { - var update_mode = ((page_load) ? 'replace' : 'update'); + var update_mode = ((page_load) ? 'replace' : 'update'); + page_load = false; in_progress = false; updateConvItems(update_mode,data); }); diff --git a/mod/network.php b/mod/network.php index 7e1bfdcda..2f93dd3bc 100644 --- a/mod/network.php +++ b/mod/network.php @@ -488,7 +488,7 @@ function network_content(&$a, $update = 0, $load = false) { $a->page['htmlhead'] .= " diff --git a/view/search_item.tpl b/view/search_item.tpl index e13c1e5a7..dc4a43c6a 100644 --- a/view/search_item.tpl +++ b/view/search_item.tpl @@ -42,7 +42,7 @@
{{ if $item.drop.dropping }}{{ endif }}
- {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedropping }}{{ endif }}
diff --git a/view/wall_item.tpl b/view/wall_item.tpl index b9278b375..458677433 100644 --- a/view/wall_item.tpl +++ b/view/wall_item.tpl @@ -62,9 +62,9 @@ {{ endif }}
- {{ if $item.drop.pagedropping }}{{ endif }} + {{ if $item.drop.dropping }}{{ endif }}
- {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedropping }}{{ endif }}
diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl index 478df8e88..983c03287 100644 --- a/view/wallwall_item.tpl +++ b/view/wallwall_item.tpl @@ -69,7 +69,7 @@
{{ if $item.drop.dropping }}{{ endif }}
- {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedropping }}{{ endif }}
-- cgit v1.2.3