Browse Source

Merge branch 'config' into fixIpCount

pull/47/head
discomrade 3 years ago
parent
commit
0272b3ba74
  1. 2
      js/thread-stats.js
  2. 7
      stylesheets/style.css
  3. 2
      templates/post_thread.html

2
js/thread-stats.js

@ -14,7 +14,7 @@ $(document).ready(function(){
var thread_id = (document.location.pathname + document.location.search).split('/');
thread_id = thread_id[thread_id.length -1].split('+')[0].split('.')[0];
$('.clear').after('<div id="thread_stats"></div>');
$('.clear').before('<div id="thread_stats"></div>');
var el = $('#thread_stats');
el.prepend('Page <span id="thread_stats_page">?</span>');

7
stylesheets/style.css

@ -1965,3 +1965,10 @@ span.strikethrough {
span.orangeQuote {
color: #FF8C00;
}
#uniqueip > span {
display: block;
float: right;
margin: 0em 1em;
}

2
templates/post_thread.html

@ -100,7 +100,7 @@
{% endfor %}
<br class="clear"/>
{% if not index %}
<div id="uniqueip"><span style="display: block; float: left;">Unique IPs: {{ iparray|length }} </span></div>
<div id="uniqueip"><span>Unique IPs: {{ iparray|length }} |</span></div>
{% endif %}
{% if hr %}<hr/>{% endif %}
</div>

Loading…
Cancel
Save