Browse Source

Show stickies at top of catalog

pull/40/head
8chan 9 years ago
committed by czaks
parent
commit
dd27026618
  1. 4
      js/catalog.js
  2. 4
      templates/themes/catalog/catalog.html

4
js/catalog.js

@ -28,7 +28,7 @@ if (active_page == 'catalog') $(function(){
$("#sort_by").change(function(){
var value = this.value;
$('#Grid').mixItUp('sort', value);
$('#Grid').mixItUp('sort', (value == "random" ? value : "sticky:desc " + value));
catalog.sort_by = value;
localStorage.catalog = JSON.stringify(catalog);
});
@ -46,7 +46,7 @@ if (active_page == 'catalog') $(function(){
$('#Grid').mixItUp({
animation: {
enable: false
},
}
});
if (catalog.sort_by !== undefined) {

4
templates/themes/catalog/catalog.html

@ -38,6 +38,8 @@
data-bump="{{ post.bump }}"
data-time="{{ post.time }}"
data-id="{{ post.id }}"
data-sticky="{% if post.sticky %}true{% else %}false{% endif %}"
data-locked="{% if post.locked %}true{% else %}false{% endif %}"
>
<div class="thread grid-li grid-size-small">
<a href="{{post.link}}">
@ -49,7 +51,7 @@
id="img-{{ post.id }}" data-subject="{% if post.subject %}{{ post.subject|e }}{% endif %}" data-name="{{ post.name|e }}" data-muhdifference="{{ post.muhdifference }}" class="{{post.board}} thread-image" title="{{post.bump|date('%b %d %H:%M')}}">
</a>
<div class="replies">
<strong>R: {{ post.reply_count }} / I: {{ post.image_count }}</strong>
<strong>R: {{ post.reply_count }} / I: {{ post.image_count }}{% if post.sticky %} (sticky){% endif %}</strong>
{% if post.subject %}
<p class="intro">
<span class="subject">

Loading…
Cancel
Save