mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-25 07:50:23 +01:00
Merge /srv/http
This commit is contained in:
commit
c59a840cc7
2
faq.php
2
faq.php
@ -65,7 +65,7 @@ $body = <<<EOT
|
||||
</ul>
|
||||
|
||||
<h2>How are featured boards chosen?</h2>
|
||||
<p>Top fifteen boards excluding /meta/, /b/ and /pol/.</p>
|
||||
<p>Top fifteen boards excluding /meta/, /b/ and /news+/.</p>
|
||||
|
||||
<h2>Who owns /meta/ and /b/?</h2>
|
||||
<p>No one, so they are <em>de facto</em> property of the administration.</p>
|
||||
|
@ -87,7 +87,7 @@
|
||||
-webkit-box-sizing:border-box;\
|
||||
-moz-box-sizing: border-box;\
|
||||
font-size: 10pt;\
|
||||
resize: vertical;\
|
||||
resize: both;\
|
||||
}\
|
||||
#quick-reply input, #quick-reply select, #quick-reply textarea {\
|
||||
margin: 0 0 1px 0;\
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
onready(function(){
|
||||
var showBackLinks = function() {
|
||||
var reply_id = $(this).attr('id').replace(/^reply_/, '');
|
||||
var reply_id = $(this).attr('id').replace(/^(reply|op)_/, '');
|
||||
|
||||
$(this).find('div.body a:not([rel="nofollow"])').each(function() {
|
||||
var id, post, $mentioned;
|
||||
@ -26,6 +26,9 @@ onready(function(){
|
||||
return;
|
||||
|
||||
$post = $('#reply_' + id);
|
||||
if($post.length == 0)
|
||||
$post = $('#op_' + id);
|
||||
|
||||
if($post.length == 0)
|
||||
return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user