Difference between revisions of "User:Dragonjet/scripts/CloseThread.js"

m (logging)
m (revert to global vars)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
(function($, ArticleComments, ClosedThreads){
 
(function($, ArticleComments, ClosedThreads){
 
"use strict";
 
"use strict";
console.log("Close Thread v0.2");
+
console.log("Close Thread v0.6");
 
+
 
function ExecCloseThreads(){
 
function ExecCloseThreads(){
 
$(ClosedThreads).each(function(index, comment_id){
 
$(ClosedThreads).each(function(index, comment_id){
 
console.log("Closing: "+comment_id);
 
console.log("Closing: "+comment_id);
 
$("#comm-"+comment_id+" .article-comm-reply").hide();
 
$("#comm-"+comment_id+" .article-comm-reply").hide();
$("#comm-"+comment_id+" .tools").prepend('[Thread Closed]');
 
 
});
 
});
 
}
 
}

Latest revision as of 11:15, 8 January 2015

(function($, ArticleComments, ClosedThreads){
	"use strict";
	console.log("Close Thread v0.6");
 
	function ExecCloseThreads(){
		$(ClosedThreads).each(function(index, comment_id){
console.log("Closing: "+comment_id);
			$("#comm-"+comment_id+" .article-comm-reply").hide();
		});
	}
 
	$(window).load(function(){
		if(ClosedThreads.length > 0){
			var realFunc = ArticleComments.addHover;
			ArticleComments.addHover = function () {
				var result = realFunc.apply(this, arguments);
				ExecCloseThreads();
				return result;
			};
		}
	});
 
}(jQuery, window.ArticleComments, window.CloseThread));