Browse Source

js/quick-reply.js

pull/40/head
Czterooki 11 years ago
parent
commit
72876b6492
  1. 8
      js/quick-reply.js

8
js/quick-reply.js

@ -17,7 +17,7 @@ $(document).ready(function(){
return; // not index
txt_new_topic = $('form[name=post] input[type=submit]').val();
txt_new_reply = txt_new_topic == 'Submit' ? txt_new_topic : 'New Reply';
txt_new_reply = txt_new_topic == 'Submit' ? txt_new_topic : 'Reply';
undo_quick_reply = function() {
$('div.banner').remove();
@ -26,10 +26,10 @@ $(document).ready(function(){
}
$('div.post.op').each(function() {
var id = $(this).children('p.intro').children('a.post_no:eq(1)').text();
$('<a href="?/b/res/69.html">[Quick reply]</a>').insertAfter($(this).children('p.intro').children('a:last')).click(function() {
var id = $(this).children('p.intro').children('a.post_no:eq(2)').text();
$('<a href="#">[Quick Reply]</a>').insertAfter($(this).children('p.intro').children('a:last')).click(function() {
$('div.banner').remove();
$('<div class="banner">Posting mode: Replying to <small>&gt;&gt;' + id + '</small> <a class="unimportant" onclick="undo_quick_reply()" href="javascript:void(0)">[Return]</a></div>')
$('<div class="banner">Post Mode: Quick Reply to <small>&gt;&gt;' + id + '</small> <a class="unimportant" onclick="undo_quick_reply()" href="javascript:void(0)">[Return]</a></div>')
.insertBefore('form[name=post]');
$('form[name=post] input[type=submit]').val(txt_new_reply);

Loading…
Cancel
Save