helialprofile.png
Welcome to IOPWiki, Commander. You can contribute to this wiki without an account. Learn how to contribute and join our Discord server.

Difference between revisions of "MediaWiki:Gadget-commentaddon.js"

Welcome to IOP Wiki. This website is maintained by the Girls' Frontline community and is free to edit by anyone.
Jump to navigation Jump to search
(Added styling class)
 
(7 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
   $(document).ready(function() {
 
   $(document).ready(function() {
 
   var faqAddon = $('<div></div>');
 
   var faqAddon = $('<div></div>');
   faqAddon.html('Please see our <a href="Guideline_Comments">comment guidelines</a> first.');
+
   faqAddon.html('<ul><li>Comments that do not abide by our new <a href="'+document.location.origin+'/wiki/Guideline_Comments">Comments Guidelines</a> will be deleted. Also consult our <a href="'+document.location.origin+'/wiki/Frequently Asked Questions">FAQ</a>.</li><li>For direct communication and assistance, please visit our <a href="https://discord.gg/GbyJQBp" class="external text" rel="nofollow">Discord Server</a>.</li></ul>');
 
   faqAddon.addClass('comments-guideline');
 
   faqAddon.addClass('comments-guideline');
 
   $('#flowthread .comment-replybox').prepend(faqAddon);
 
   $('#flowthread .comment-replybox').prepend(faqAddon);
 
   });
 
   });
 
}]);
 
}]);

Latest revision as of 16:19, 19 December 2023

RLQ.push(['jquery', function () {
  $(document).ready(function() {
  	var faqAddon = $('<div></div>');
  	faqAddon.html('<ul><li>Comments that do not abide by our new <a href="'+document.location.origin+'/wiki/Guideline_Comments">Comments Guidelines</a> will be deleted. Also consult our <a href="'+document.location.origin+'/wiki/Frequently Asked Questions">FAQ</a>.</li><li>For direct communication and assistance, please visit our <a href="https://discord.gg/GbyJQBp" class="external text" rel="nofollow">Discord Server</a>.</li></ul>');
  	faqAddon.addClass('comments-guideline');
  	$('#flowthread .comment-replybox').prepend(faqAddon);
  });
}]);