favgroups: convert post_ids from string to array.
This commit is contained in:
@@ -193,7 +193,7 @@ Post.nav_prev = function(e) {
|
||||
} else if ($(".paginator a[rel~=prev]").length) {
|
||||
location.href = $("a[rel~=prev]").attr("href");
|
||||
} else {
|
||||
href = $("#pool-nav li.pool-selected-true a[rel~=prev], #favgroup-nav a.active[rel~=prev]").attr("href");
|
||||
href = $("#pool-nav li[data-selected=true] a[rel=prev], #favgroup-nav li[data-selected=true] a[rel=prev]").attr("href");
|
||||
if (href) {
|
||||
location.href = href;
|
||||
}
|
||||
@@ -211,7 +211,7 @@ Post.nav_next = function(e) {
|
||||
} else if ($(".paginator a[rel~=next]").length) {
|
||||
location.href = $(".paginator a[rel~=next]").attr("href");
|
||||
} else {
|
||||
href = $("#pool-nav li.pool-selected-true a[rel~=next], #favgroup-nav a.active[rel~=next]").attr("href");
|
||||
href = $("#pool-nav li[data-selected=true] a[rel=next], #favgroup-nav li[data-selected=true] a[rel=next]").attr("href");
|
||||
if (href) {
|
||||
location.href = href;
|
||||
}
|
||||
|
||||
@@ -316,10 +316,6 @@ div#c-posts {
|
||||
}
|
||||
|
||||
div#a-show {
|
||||
.active, .pool-selected-true {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#post-info-source {
|
||||
word-break: break-all;
|
||||
}
|
||||
@@ -377,6 +373,10 @@ div#c-posts {
|
||||
text-align: center;
|
||||
padding: 0 5.5em;
|
||||
|
||||
&[data-selected="true"] {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.prev {
|
||||
position: absolute;
|
||||
left: 2em;
|
||||
|
||||
Reference in New Issue
Block a user