• Welcome to the Kancolle Wiki!
  • If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord

Changes

Jump to navigation Jump to search
test
(function($, ArticleComments){
"use strict";

function AddButtons(){
$("#article-comments-ul .comment").each(function(){
$(".tools", this).prepend('<a href="#article-comments" class="quoteBtn actionButton" data-id="'+$(this).attr("id")+'">Quote</a>');
});

$(".quoteBtn").on("click", function(){
var origMsg = $(".article-comm-text", $("#"+$(this).data("id"))).id();
$("#article-comm.wikiaEditor").text("> "+origMsg);
return true;
});

}

$(window).load(function(){

if(ArticleComments){
var realFunc = ArticleComments.addHover;
ArticleComments.addHover = function () {
var result = realFunc.apply(this, arguments);
AddButtons();
return result;
};
}
});

}(jQuery, window.ArticleComments));
15

edits

Navigation menu