Vergleich jscripts/general.js - 1.8.12 - 1.8.20

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 15Zeile 15

/* Create the Check All feature */
$('[name="allbox"]').each(function(key, value) {


/* Create the Check All feature */
$('[name="allbox"]').each(function(key, value) {

			$(this).change(function() {
var checkboxes = $(this).closest('form').find(':checkbox');
if($(this).is(':checked')) {
checkboxes.prop('checked', true);
} else {
checkboxes.removeAttr('checked');


















			var allbox = this;
var checked = $(this).is(':checked');
var checkboxes = $(this).closest('form').find(':checkbox').not('[name="allbox"]');

checkboxes.change(function() {
if(checked && !$(this).prop('checked'))
{
checked = false;
$(allbox).trigger('change', ['item']);
}
});

$(this).on('change', function(event, origin) {
checked = $(this).is(':checked');

if(typeof(origin) == "undefined")
{
checkboxes.each(function() {
if(checked != $(this).is(':checked'))
{
$(this).prop('checked', checked).change();
}
});

				}
});
});

				}
});
});

Zeile 30Zeile 47
		if(initialfocus.length)
{
initialfocus.focus();

		if(initialfocus.length)
{
initialfocus.focus();

		}


		}


		if(typeof(use_xmlhttprequest) != "undefined" && use_xmlhttprequest == 1)
{
mark_read_imgs = $(".ajax_mark_read");
mark_read_imgs.each(function()
{
var element = $(this);

		if(typeof(use_xmlhttprequest) != "undefined" && use_xmlhttprequest == 1)
{
mark_read_imgs = $(".ajax_mark_read");
mark_read_imgs.each(function()
{
var element = $(this);

				if(element.hasClass('forum_off') || element.hasClass('forum_offlock') || element.hasClass('forum_offlink') || element.hasClass('subforum_minioff') || element.hasClass('subforum_miniofflock') || element.hasClass('subforum_miniofflink') || (element.attr("title") && element.attr("title") == lang.no_new_posts)) return;

				if(element.hasClass('forum_off') || element.hasClass('forum_offclose') || element.hasClass('forum_offlink') || element.hasClass('subforum_minioff') || element.hasClass('subforum_minioffclose') || element.hasClass('subforum_miniofflink') || (element.attr("title") && element.attr("title") == lang.no_new_posts)) return;


element.click(function()
{


element.click(function()
{

Zeile 49Zeile 66
				if(element.attr("title"))
{
element.attr("title", element.attr("title") + " - ");

				if(element.attr("title"))
{
element.attr("title", element.attr("title") + " - ");

				}

				}

				element.attr("title", element.attr("title") + lang.click_mark_read);
});
}

				element.attr("title", element.attr("title") + lang.click_mark_read);
});
}

Zeile 66Zeile 83

$(document).on($.modal.CLOSE, function(event, modal) {
$("body").css("overflow", "auto");


$(document).on($.modal.CLOSE, function(event, modal) {
$("body").css("overflow", "auto");

 
			});
}

$("a.referralLink").click(MyBB.showReferrals);

if($('.author_avatar').length)
{
$(".author_avatar img").on('error', function () {
$(this).unbind("error").closest('.author_avatar').remove();

			});
}
},

			});
}
},

Zeile 80Zeile 106
		{
$(html).appendTo('body').modal(options);
});

		{
$(html).appendTo('body').modal(options);
});

 
	},

prompt: function(message, options)
{
var defaults = { fadeDuration: 250, zIndex: (typeof modal_zindex !== 'undefined' ? modal_zindex : 9999) };
var buttonsText = '';

for (var i in options.buttons)
{
buttonsText += templates.modal_button.replace('__title__', options.buttons[i].title);
}

var html = templates.modal.replace('__buttons__', buttonsText).replace('__message__', message);
var modal = $(html);
modal.modal($.extend(defaults, options));
var buttons = modal.find('.modal_buttons > .button');
buttons.click(function(e)
{
e.preventDefault();
var index = $(this).index();
if (options.submit(e, options.buttons[index].value) == false)
return;

$.modal.close();
});

if (buttons[0])
{
modal.on($.modal.OPEN, function()
{
buttons[0].focus();
});
}

return modal;

	},

deleteEvent: function(eid)
{

	},

deleteEvent: function(eid)
{

		$.prompt(deleteevent_confirm, {

		MyBB.prompt(deleteevent_confirm, {

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

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

Zeile 98Zeile 159
									action: "calendar.php",
style: "display: none;"
});

									action: "calendar.php",
style: "display: none;"
});


form.append(


form.append(

						$("<input />",
{
name: "action",

						$("<input />",
{
name: "action",

Zeile 126Zeile 187
							name: "eid",
type: "hidden",
value: eid

							name: "eid",
type: "hidden",
value: eid

						})
);

						})
);


form.append(
$("<input />",


form.append(
$("<input />",

Zeile 146Zeile 207
	},

reputation: function(uid, pid)

	},

reputation: function(uid, pid)

	{

	{

		if(!pid)
{
var pid = 0;

		if(!pid)
{
var pid = 0;

Zeile 155Zeile 216
		MyBB.popupWindow("/reputation.php?action=add&uid="+uid+"&pid="+pid+"&modal=1");
},


		MyBB.popupWindow("/reputation.php?action=add&uid="+uid+"&pid="+pid+"&modal=1");
},


	viewNotes: function(uid)











	viewNotes: function(uid)
{
MyBB.popupWindow("/member.php?action=viewnotes&uid="+uid+"&modal=1");
},

getIP: function(pid)
{
MyBB.popupWindow("/moderation.php?action=getip&pid="+pid+"&modal=1");
},

getPMIP: function(pmid)

	{

	{

		MyBB.popupWindow("/member.php?action=viewnotes&uid="+uid+"&modal=1");

		MyBB.popupWindow("/moderation.php?action=getpmip&pmid="+pmid+"&modal=1");

	},

deleteReputation: function(uid, rid)
{

	},

deleteReputation: function(uid, rid)
{

		$.prompt(delete_reputation_confirm, {

		MyBB.prompt(delete_reputation_confirm, {

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

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

Zeile 284Zeile 355
		{
var markreadfid = $("#mark_read_"+fid);
if(markreadfid.hasClass('subforum_minion'))

		{
var markreadfid = $("#mark_read_"+fid);
if(markreadfid.hasClass('subforum_minion'))

			{

			{

				markreadfid.removeClass('subforum_minion').addClass('subforum_minioff');
}
else

				markreadfid.removeClass('subforum_minion').addClass('subforum_minioff');
}
else

Zeile 428Zeile 499

deleteAnnouncement: function(data)
{


deleteAnnouncement: function(data)
{

		$.prompt(announcement_quickdelete_confirm, {

		MyBB.prompt(announcement_quickdelete_confirm, {

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

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

Zeile 442Zeile 513
		});

return false;

		});

return false;

 
	},

showReferrals: function(e)
{
var idPieces, uid;

e.preventDefault();

if(typeof this.id == "undefined")
{
return false;
}

idPieces = this.id.split("_");
uid = parseInt(idPieces[idPieces.length - 1], 10);

if(uid <= 0)
{
return false;
}

MyBB.popupWindow("/xmlhttp.php?action=get_referrals&uid="+uid);

	},

// Fixes https://github.com/mybb/mybb/issues/1232

	},

// Fixes https://github.com/mybb/mybb/issues/1232

Zeile 510Zeile 603
	get: function(name)
{
name = cookiePrefix + name;

	get: function(name)
{
name = cookiePrefix + name;

		return $.cookie(name);

		return Cookies.get(name);

	},

set: function(name, value, expires)

	},

set: function(name, value, expires)

Zeile 531Zeile 624
			secure: cookieSecureFlag == true,
};


			secure: cookieSecureFlag == true,
};


		return $.cookie(name, value, options);

		return Cookies.set(name, value, options);

	},

unset: function(name)

	},

unset: function(name)

Zeile 542Zeile 635
			path: cookiePath,
domain: cookieDomain
};

			path: cookiePath,
domain: cookieDomain
};

		return $.removeCookie(name, options);

		return Cookies.remove(name, options);

	}
};


	}
};