slide browse feed details
This commit is contained in:
parent
b1085d24f3
commit
34a01a2078
3 changed files with 13 additions and 9 deletions
|
@ -140,7 +140,7 @@
|
|||
$details["title"] ."</a> " .
|
||||
"<span class='subscribers'>($subscribers)</span>";
|
||||
|
||||
print "<div class=\"browserDetails\" id=\"BRDET-" . $details["id"] . "\">";
|
||||
print "<div class=\"browserDetails\" style=\"display : none\" id=\"BRDET-" . $details["id"] . "\">";
|
||||
print "</div>";
|
||||
|
||||
print "</li>";
|
||||
|
|
15
prefs.js
15
prefs.js
|
@ -48,8 +48,9 @@ function expand_feed_callback() {
|
|||
try {
|
||||
var container = document.getElementById("BRDET-" + feed_to_expand);
|
||||
container.innerHTML=xmlhttp.responseText;
|
||||
container.style.display = "block";
|
||||
// container.style.display = "block";
|
||||
// p_notify("");
|
||||
Effect.SlideDown(container, {duration : 0.5});
|
||||
} catch (e) {
|
||||
exception_error("expand_feed_callback", e);
|
||||
}
|
||||
|
@ -1533,16 +1534,16 @@ function browserToggleExpand(id) {
|
|||
|
||||
var d = document.getElementById("BRDET-" + id);
|
||||
|
||||
if (d.style.display == "block") {
|
||||
/* if (d.style.display == "block") {
|
||||
d.style.display = "none";
|
||||
|
||||
} else {
|
||||
} else { */
|
||||
|
||||
if (Element.visible(d)) {
|
||||
Effect.SlideUp(d, {duration : 0.5});
|
||||
} else {
|
||||
feed_to_expand = id;
|
||||
|
||||
d.style.display = "block";
|
||||
d.innerHTML = "Loading, please wait...";
|
||||
|
||||
xmlhttp.open("GET", "backend.php?op=pref-feed-browser&subop=details&id="
|
||||
+ param_escape(id), true);
|
||||
xmlhttp.onreadystatechange=expand_feed_callback;
|
||||
|
@ -1550,7 +1551,7 @@ function browserToggleExpand(id) {
|
|||
}
|
||||
|
||||
} catch (e) {
|
||||
exception_error("browserExpand", e);
|
||||
exception_error("browserToggleExpand", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1035,6 +1035,10 @@ ul.userFeedList {
|
|||
-moz-border-radius : 5px;
|
||||
} */
|
||||
|
||||
/*#browseBigFeedList li {
|
||||
padding :0px;
|
||||
}*/
|
||||
|
||||
ul.labelTestResults {
|
||||
height : 100px;
|
||||
overflow : auto;
|
||||
|
@ -1086,7 +1090,6 @@ input.feedBrowseCB {
|
|||
|
||||
div.browserDetails {
|
||||
margin : 5px 5px 5px 5px;
|
||||
display : none;
|
||||
padding : 5px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue