Vergleich jscripts/thread.js - 1.8.12 - 1.8.18

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 5Zeile 5
			Thread.quickEdit();
Thread.initQuickReply();
Thread.initMultiQuote();

			Thread.quickEdit();
Thread.initQuickReply();
Thread.initMultiQuote();

			



			// Set spinner image
$('#quickreply_spinner img').attr('src', spinner_image);
});

			// Set spinner image
$('#quickreply_spinner img').attr('src', spinner_image);
});

Zeile 34Zeile 34
		}
return true;
},

		}
return true;
},





	multiQuote: function(pid)
{
var new_post_ids = new Array();
var quoted = Cookie.get("multiquote");
var is_new = true;

	multiQuote: function(pid)
{
var new_post_ids = new Array();
var quoted = Cookie.get("multiquote");
var is_new = true;

		if(quoted)








		var deleted = false;
if($("#pid" + pid).next("div.post").hasClass('deleted_post'))
{
$.jGrowl(lang.post_deleted_error, {theme:'jgrowl_error'});
deleted = true;
}

if(quoted && !deleted)

		{
var post_ids = quoted.split("|");


		{
var post_ids = quoted.split("|");


Zeile 55Zeile 62
				}
});
}

				}
});
}

		



		var mquote_a = $("#multiquote_"+pid).closest('a')

		var mquote_a = $("#multiquote_"+pid).closest('a')

		if(is_new == true)
{

		if(is_new == true && !deleted)
{

			new_post_ids[new_post_ids.length] = pid;
mquote_a.removeClass('postbit_multiquote').addClass('postbit_multiquote_on');

			new_post_ids[new_post_ids.length] = pid;
mquote_a.removeClass('postbit_multiquote').addClass('postbit_multiquote_on');

		}

		}

		else
{
mquote_a.removeClass('postbit_multiquote_on').addClass('postbit_multiquote');
}

		else
{
mquote_a.removeClass('postbit_multiquote_on').addClass('postbit_multiquote');
}

		



		var mquote_quick = $('#quickreply_multiquote');
if(mquote_quick.length)
{

		var mquote_quick = $('#quickreply_multiquote');
if(mquote_quick.length)
{

Zeile 97Zeile 104
				complete: function (request, status)
{
Thread.multiQuotedLoaded(request, status);

				complete: function (request, status)
{
Thread.multiQuotedLoaded(request, status);

					



					// Get rid of spinner
mquote_spinner.hide();
}

					// Get rid of spinner
mquote_spinner.hide();
}

Zeile 191Zeile 198
				{
id = $(this).attr('id');
pid = id.replace( /[^\d.]/g, '');

				{
id = $(this).attr('id');
pid = id.replace( /[^\d.]/g, '');

 
					$("#quickedit_" + pid + "_editreason_original").val($("#quickedit_" + pid + "_editreason").val());

					return {
editreason: $("#quickedit_" + pid + "_editreason").val()
}

					return {
editreason: $("#quickedit_" + pid + "_editreason").val()
}

Zeile 199Zeile 207
				{
id = $(this).attr('id');
pid = id.replace( /[^\d.]/g, '');

				{
id = $(this).attr('id');
pid = id.replace( /[^\d.]/g, '');

					



					var json = $.parseJSON(values);
if(typeof json == 'object')
{

					var json = $.parseJSON(values);
if(typeof json == 'object')
{

Zeile 236Zeile 244
							$(".jGrowl").jGrowl("close");

$(this).html(json.message);

							$(".jGrowl").jGrowl("close");

$(this).html(json.message);

							



							alert(json.moderation_thread);

							alert(json.moderation_thread);

							



							// Redirect user to forum
window.location = json.url;

							// Redirect user to forum
window.location = json.url;

						}	

						}

						else
{
// Change html content
$(this).html(json.message);
$('#edited_by_' + pid).html(json.editedmsg);
}

						else
{
// Change html content
$(this).html(json.message);
$('#edited_by_' + pid).html(json.editedmsg);
}

					}

					}

					else
{
// Change html content

					else
{
// Change html content

Zeile 269Zeile 277
				// Take pid out of the id attribute
id = $(this).attr('id');
pid = id.replace( /[^\d.]/g, '');

				// Take pid out of the id attribute
id = $(this).attr('id');
pid = id.replace( /[^\d.]/g, '');

 
				if($("#pid" + pid).next("div.post").hasClass('deleted_post'))
{
$.jGrowl(lang.post_deleted_error, {theme:'jgrowl_error'});
return false;
}


// Create a copy of the post
if($('#pid_' + pid + '_temp').length == 0)
{
$('#pid_' + pid).clone().attr('id','pid_' + pid + '_temp').appendTo("body").hide();


// Create a copy of the post
if($('#pid_' + pid + '_temp').length == 0)
{
$('#pid_' + pid).clone().attr('id','pid_' + pid + '_temp').appendTo("body").hide();

				}


				}


				// Trigger the edit event
$('#pid_' + pid).trigger("edit" + pid);


				// Trigger the edit event
$('#pid_' + pid).trigger("edit" + pid);


Zeile 283Zeile 296
				$('#pid_' + pid + ' textarea').attr('id', 'quickedit_' + pid);
if(allowEditReason == 1 && $('#quickedit_' + pid + '_editreason').length == 0)
{

				$('#pid_' + pid + ' textarea').attr('id', 'quickedit_' + pid);
if(allowEditReason == 1 && $('#quickedit_' + pid + '_editreason').length == 0)
{

					$('#quickedit_' + pid).after('<label for="editreason">' + lang.editreason + ':</label> <input type="text" class="textbox" style="margin: 6px 0;" name="editreason" size="40" maxlength="150" id="quickedit_' + pid + '_editreason" /><br />');



					edit_el = $('#editreason_' + pid + '_original').clone().attr('id','editreason_' + pid);
edit_el.children('#quickedit_' + pid + '_editreason_original').attr('id','quickedit_' + pid + '_editreason');
edit_el.insertAfter('#quickedit_' + pid).show();

				}

				}

			});

			});

        });

return false;

        });

return false;

Zeile 299Zeile 314
			$('#quick_reply_submit').bind('click', function(e) {
return Thread.quickReply(e);
});

			$('#quick_reply_submit').bind('click', function(e) {
return Thread.quickReply(e);
});

		}
},


		}
},


	quickReply: function(e)
{
e.stopPropagation();

	quickReply: function(e)
{
e.stopPropagation();

Zeile 313Zeile 328

this.quick_replying = 1;
var post_body = $('#quick_reply_form').serialize();


this.quick_replying = 1;
var post_body = $('#quick_reply_form').serialize();

		



		// Spinner!
var qreply_spinner = $('#quickreply_spinner');
qreply_spinner.show();

$.ajax(

		// Spinner!
var qreply_spinner = $('#quickreply_spinner');
qreply_spinner.show();

$.ajax(

		{

		{

			url: 'newreply.php?ajax=1',
type: 'post',
data: post_body,

			url: 'newreply.php?ajax=1',
type: 'post',
data: post_body,

Zeile 327Zeile 342
        	complete: function (request, status)
{
Thread.quickReplyDone(request, status);

        	complete: function (request, status)
{
Thread.quickReplyDone(request, status);

				



				// Get rid of spinner
qreply_spinner.hide();
}

				// Get rid of spinner
qreply_spinner.hide();
}

Zeile 344Zeile 359
		if(typeof json == 'object')
{
if(json.hasOwnProperty("errors"))

		if(typeof json == 'object')
{
if(json.hasOwnProperty("errors"))

			{

			{

				$(".jGrowl").jGrowl("close");

$.each(json.errors, function(i, message)

				$(".jGrowl").jGrowl("close");

$.each(json.errors, function(i, message)

Zeile 352Zeile 367
					$.jGrowl(lang.quick_reply_post_error + ' ' + message, {theme:'jgrowl_error'});
});
$('#quickreply_spinner').hide();

					$.jGrowl(lang.quick_reply_post_error + ' ' + message, {theme:'jgrowl_error'});
});
$('#quickreply_spinner').hide();

			}
}

			}
}


if($('#captcha_trow').length)
{


if($('#captcha_trow').length)
{

Zeile 361Zeile 376
			if(cap)
{
json.data = json.data.replace(/^<captcha>(.*)<\/captcha>/, '');

			if(cap)
{
json.data = json.data.replace(/^<captcha>(.*)<\/captcha>/, '');


if(cap[1] == "reload")
{
Recaptcha.reload();
}
else if($("#captcha_img").length)


if($("#captcha_img").length)





				{
if(cap[1])
{

				{
if(cap[1])
{

Zeile 388Zeile 399
				}
}
}

				}
}
}

		



		if(json.hasOwnProperty("errors"))
return false;


		if(json.hasOwnProperty("errors"))
return false;


Zeile 398Zeile 409
			var post = document.createElement("div");

$('#posts').append(json.data);

			var post = document.createElement("div");

$('#posts').append(json.data);

			



			if (typeof inlineModeration != "undefined") // Guests don't have this object defined
$("#inlinemod_" + pid).on('change', inlineModeration.checkItem);

			if (typeof inlineModeration != "undefined") // Guests don't have this object defined
$("#inlinemod_" + pid).on('change', inlineModeration.checkItem);

				



			Thread.quickEdit("#pid_" + pid);

// Eval javascript

			Thread.quickEdit("#pid_" + pid);

// Eval javascript

Zeile 415Zeile 426
			if(lastpid.length)
{
lastpid.val(pid);

			if(lastpid.length)
{
lastpid.val(pid);

			}

			}

		}
else
{

		}
else
{

Zeile 431Zeile 442
	showIgnoredPost: function(pid)
{
$('#ignored_post_'+pid).slideToggle("slow");

	showIgnoredPost: function(pid)
{
$('#ignored_post_'+pid).slideToggle("slow");

		$('#post_'+pid).slideToggle("slow");
},

		$('#post_'+pid).slideToggle("slow");
},


showDeletedPost: function(pid)
{
$('#deleted_post_'+pid).slideToggle("slow");
$('#post_'+pid).slideToggle("slow");
},


showDeletedPost: function(pid)
{
$('#deleted_post_'+pid).slideToggle("slow");
$('#post_'+pid).slideToggle("slow");
},





	deletePost: function(pid)
{
$.prompt(quickdelete_confirm, {

	deletePost: function(pid)
{
$.prompt(quickdelete_confirm, {

Zeile 471Zeile 482
								{
// Change CSS class of div 'post_[pid]'
$("#post_"+pid).addClass("unapproved_post deleted_post");

								{
// Change CSS class of div 'post_[pid]'
$("#post_"+pid).addClass("unapproved_post deleted_post");


$("#quick_delete_" + pid).hide();
$("#quick_restore_" + pid).show();





									if(json.first == 1)
{
$("#quick_reply_form, .thread_tools, .new_reply_button, .inline_rating").hide();
$("#moderator_options_selector option.option_mirage").attr("disabled","disabled");
$("#moderator_options_selector option[value='softdeletethread']").val("restorethread").text(lang.restore_thread);
}


									$.jGrowl(lang.quick_delete_success, {theme:'jgrowl_success'});
}
else if(json.data == 2)
{
// Actually deleted
$('#post_'+pid).slideToggle("slow");

									$.jGrowl(lang.quick_delete_success, {theme:'jgrowl_success'});
}
else if(json.data == 2)
{
// Actually deleted
$('#post_'+pid).slideToggle("slow");

									



									$.jGrowl(lang.quick_delete_success, {theme:'jgrowl_success'});

									$.jGrowl(lang.quick_delete_success, {theme:'jgrowl_success'});

								} else if(json.data == 3) 

								} else if(json.data == 3)

								{
// deleted thread --> redirect

								{
// deleted thread --> redirect

									
if(!json.hasOwnProperty("url"))
{


if(!json.hasOwnProperty("url"))
{

										$.jGrowl(lang.unknown_error, {theme:'jgrowl_error'});
}

										$.jGrowl(lang.unknown_error, {theme:'jgrowl_error'});
}

									



									// set timeout for redirect

									// set timeout for redirect

									window.setTimeout(function() 

									window.setTimeout(function()

									{
window.location = json.url;
}, 3000);

									{
window.location = json.url;
}, 3000);

									



									// print success message
$.jGrowl(lang.quick_delete_thread_success, {theme:'jgrowl_success'});

									// print success message
$.jGrowl(lang.quick_delete_thread_success, {theme:'jgrowl_success'});

								}
}
else
{
$.jGrowl(lang.unknown_error, {theme:'jgrowl_error'});
}
}
});

								}
}
else
{
$.jGrowl(lang.unknown_error, {theme:'jgrowl_error'});
}
}
});

				}
}
});

				}
}
});

		



		return false;
},


		return false;
},


Zeile 544Zeile 558
							{
// Change CSS class of div 'post_[pid]'
$("#post_"+pid).removeClass("unapproved_post deleted_post");

							{
// Change CSS class of div 'post_[pid]'
$("#post_"+pid).removeClass("unapproved_post deleted_post");


$("#quick_delete_" + pid).show();
$("#quick_restore_" + pid).hide();




								if(json.first == 1)
{
$("#quick_reply_form, .thread_tools, .new_reply_button, .inline_rating").show();
$("#moderator_options_selector option.option_mirage").removeAttr("disabled");
$("#moderator_options_selector option[value='restorethread']").val("softdeletethread").text(lang.softdelete_thread);
}


$.jGrowl(lang.quick_restore_success, {theme:'jgrowl_success'});
}


$.jGrowl(lang.quick_restore_success, {theme:'jgrowl_success'});
}

Zeile 559Zeile 576
				}
}
});

				}
}
});

		



		return false;
},


		return false;
},