Vergleich jscripts/post.js - 1.8.19 - 1.8.20

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 1Zeile 1
var Post = {
init: function()
{

var Post = {
init: function()
{

		$(document).ready(function()

		$(function()

		{
Post.initAttachments();
});

		{
Post.initAttachments();
});

Zeile 94Zeile 94
	
removeAttachment: function(aid)
{

	
removeAttachment: function(aid)
{

		$.prompt(removeattach_confirm, {

		MyBB.prompt(removeattach_confirm, {

			buttons:[
{title: yes_confirm, value: true},
{title: no_confirm, value: false}

			buttons:[
{title: yes_confirm, value: true},
{title: no_confirm, value: false}

Zeile 105Zeile 105
					document.input.attachmentaid.value = aid;
document.input.attachmentact.value = "remove";


					document.input.attachmentaid.value = aid;
document.input.attachmentact.value = "remove";


					$("input[name=rem]").parents('form').append('<input type="submit" id="rem_submit" class="hidden" />');
$('#rem_submit').click();






























					var form = $('input[name=rem]').parents('form');

if(use_xmlhttprequest != 1)
{
form.append('<input type="submit" id="rem_submit" class="hidden" />');
$('#rem_submit').click();
return false;
}

$.ajax({
type: 'POST',
url: form.attr('action') + '&ajax=1',
data: form.serialize(),
success: function(data) {
if(data.hasOwnProperty("errors"))
{
$.each(data.errors, function(i, message)
{
$.jGrowl(lang.post_fetch_error + ' ' + message, {theme:'jgrowl_error'});
});
return false;
}
else if (data.success)
{
$('#attachment_'+aid).hide(500, function()
{
$(this).remove();
});
}
}
});

				}
}
});

				}
}
});