Vergleich jscripts/general.js - 1.8.0 - 1.8.26

  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.on('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).trigger('change');
}
});

				}
});
});

// Initialise "initial focus" field if we have one
var initialfocus = $(".initial_focus");

				}
});
});

// Initialise "initial focus" field if we have one
var initialfocus = $(".initial_focus");

		if(initialfocus.length > 0)
{
initialfocus.focus();
}


		if(initialfocus.length)
{
initialfocus.trigger('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.on('click', function()

				{
MyBB.markForumRead(this);
});

				{
MyBB.markForumRead(this);
});

Zeile 51Zeile 68
					element.attr("title", element.attr("title") + " - ");
}
element.attr("title", element.attr("title") + lang.click_mark_read);

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

			});

			});

		}

if(typeof $.modal !== "undefined")

		}

if(typeof $.modal !== "undefined")

Zeile 60Zeile 77
				$("body").css("overflow", "hidden");
if(initialfocus.length > 0)
{

				$("body").css("overflow", "hidden");
if(initialfocus.length > 0)
{

					initialfocus.focus();

					initialfocus.trigger('focus');

				}
});

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

				}
});

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

 
			});
}

$("a.referralLink").on('click', MyBB.showReferrals);

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

			});
}
},

popupWindow: function(url, options, root)
{

			});
}
},

popupWindow: function(url, options, root)
{

		if(!options) options = { fadeDuration: 250, zIndex: 5 }

		if(!options) options = { fadeDuration: 250, zIndex: (typeof modal_zindex !== 'undefined' ? modal_zindex : 9999) }

		if(root != true)
url = rootpath + url;


		if(root != true)
url = rootpath + url;


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.on('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]).trigger('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",
type: "hidden",

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

							value: "do_editevent"

							value: "do_deleteevent"

						})
);

if(my_post_key)

						})
);

if(my_post_key)

					{

					{

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

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

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

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

						})
);

						})
);


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


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

Zeile 139Zeile 200
					);

$("body").append(form);

					);

$("body").append(form);

					form.submit();

					form.trigger('submit');

				}
}
});
},

reputation: function(uid, pid)

				}
}
});
},

reputation: function(uid, pid)

	{

	{

		if(!pid)
{
var pid = 0;
}

		if(!pid)
{
var pid = 0;
}


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


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);











	{
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("/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 176Zeile 247
						action: "reputation.php?action=delete",
style: "display: none;"
});

						action: "reputation.php?action=delete",
style: "display: none;"
});





					form.append(
$("<input />",
{
name: "rid",
type: "hidden",
value: rid

					form.append(
$("<input />",
{
name: "rid",
type: "hidden",
value: rid

						})
);


						})
);


					if(my_post_key)
{
form.append(

					if(my_post_key)
{
form.append(

Zeile 208Zeile 279
					);

$("body").append(form);

					);

$("body").append(form);

					form.submit();

					form.trigger('submit');

				}
}
});

				}
}
});

Zeile 216Zeile 287
		return false;
},


		return false;
},


	whoPosted: function(tid)

	whoPosted: function(tid, sortby)

	{

	{

		MyBB.popupWindow("/misc.php?action=whoposted&tid="+tid);


































		var sort = "", url, body;

if(typeof sortby === "undefined")
{
sortby = "";
}

if(sortby == "username")
{
sort = "&sort=" + sortby;
}
url = "/misc.php?action=whoposted&tid="+tid+sort+"&modal=1";

// if the modal is already open just replace the contents
if($.modal.isActive())
{
// don't waste a query if we are already sorted correctly
if(sortby == MyBB.whoPostedSort)
{
return;
}

MyBB.whoPostedSort = sortby;

$.get(rootpath + url, function(html)
{
// just replace the inner div
body = $(html).children("div");
$("div.modal").children("div").replaceWith(body);
});
return;
}
MyBB.whoPostedSort = "";
MyBB.popupWindow(url);

	},

markForumRead: function(event)
{
var element = $(event);

	},

markForumRead: function(event)
{
var element = $(event);

		if(!element)
{

		if(!element.length)
{

			return false;
}
var fid = element.attr("id").replace("mark_read_", "");

			return false;
}
var fid = element.attr("id").replace("mark_read_", "");

Zeile 248Zeile 352
	forumMarkedRead: function(fid, request)
{
if(request == 1)

	forumMarkedRead: function(fid, request)
{
if(request == 1)

		{
if($("#mark_read_"+fid).hasClass('subforum_minion'))
{
$("#mark_read_"+fid).removeClass('subforum_minion').addClass('subforum_minioff');
}
else


		{
var markreadfid = $("#mark_read_"+fid);
if(markreadfid.hasClass('subforum_minion'))
{
markreadfid.removeClass('subforum_minion').addClass('subforum_minioff');
}
else

			{

			{

				$("#mark_read_"+fid).removeClass('forum_on').addClass('forum_off');

				markreadfid.removeClass('forum_on').addClass('forum_off');

			}

			}

			$("#mark_read_"+fid).css("cursor", "default").attr("title", lang.no_new_posts);

			markreadfid.css("cursor", "default").attr("title", lang.no_new_posts);

		}
},


		}
},


Zeile 283Zeile 388
	changeLanguage: function()
{
form = $("#lang_select");

	changeLanguage: function()
{
form = $("#lang_select");

		if(!form)

		if(!form.length)

		{
return false;
}

		{
return false;
}

		form.submit();

		form.trigger('submit');

	},

changeTheme: function()
{
form = $("#theme_select");

	},

changeTheme: function()
{
form = $("#theme_select");

		if(!form)

		if(!form.length)

		{
return false;
}

		{
return false;
}

		form.submit();

		form.trigger('submit');

	},

detectDSTChange: function(timezone_with_dst)

	},

detectDSTChange: function(timezone_with_dst)

Zeile 332Zeile 437
						);

$("body").append(form);

						);

$("body").append(form);

						form.submit();

						form.trigger('submit');

	                }
}
});

	                }
}
});

Zeile 341Zeile 446

dismissPMNotice: function(bburl)
{


dismissPMNotice: function(bburl)
{

		var pm_notice = $("#content").find("#pm_notice");
if(!pm_notice)

		var pm_notice = $("#pm_notice");
if(!pm_notice.length)

		{
return false;
}

		{
return false;
}

Zeile 373Zeile 478

$.ajax({
type: "POST",


$.ajax({
type: "POST",

			url: "reputation.php",

			url: "reputation.php?modal=1",

			data: datastring,
dataType: "html",
success: function(data) {

			data: datastring,
dataType: "html",
success: function(data) {

Zeile 381Zeile 486
				$(".modal_"+uid+"_"+pid).fadeOut('slow', function() {
$(".modal_"+uid+"_"+pid).html(data);
$(".modal_"+uid+"_"+pid).fadeIn('slow');

				$(".modal_"+uid+"_"+pid).fadeOut('slow', function() {
$(".modal_"+uid+"_"+pid).html(data);
$(".modal_"+uid+"_"+pid).fadeIn('slow');

 
					$(".modal").fadeIn('slow');

				});
},
error: function(){

				});
},
error: function(){

Zeile 393Zeile 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 407Zeile 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
select2: function()
{

	// Fixes https://github.com/mybb/mybb/issues/1232
select2: function()
{

Zeile 417Zeile 545
			$.extend($.fn.select2.defaults, {
formatMatches: function (matches) {
if(matches == 1)

			$.extend($.fn.select2.defaults, {
formatMatches: function (matches) {
if(matches == 1)

					{

					{

						return lang.select2_match;

						return lang.select2_match;

					}

					}

					else
{
return lang.select2_matches.replace('{1}',matches);
}
},
formatNoMatches: function () {

					else
{
return lang.select2_matches.replace('{1}',matches);
}
},
formatNoMatches: function () {

					return lang.select2_nomatches;

					return lang.select2_nomatches;

				},
formatInputTooShort: function (input, min) {
var n = min - input.length;
if( n == 1)

				},
formatInputTooShort: function (input, min) {
var n = min - input.length;
if( n == 1)

					{

					{

						return lang.select2_inputtooshort_single;

						return lang.select2_inputtooshort_single;

					}
else
{

					}
else
{

						return lang.select2_inputtooshort_plural.replace('{1}', n);
}
},

						return lang.select2_inputtooshort_plural.replace('{1}', n);
}
},

Zeile 444Zeile 572
					if( n == 1)
{
return lang.select2_inputtoolong_single;

					if( n == 1)
{
return lang.select2_inputtoolong_single;

					}

					}

					else
{
return lang.select2_inputtoolong_plural.replace('{1}', n);

					else
{
return lang.select2_inputtoolong_plural.replace('{1}', n);

Zeile 473Zeile 601

var Cookie = {
get: function(name)


var Cookie = {
get: function(name)

	{
name = cookiePrefix + name;
return $.cookie(name);
},

set: function(name, value, expires)
{
name = cookiePrefix + name;
if(!expires)

	{
name = cookiePrefix + name;
return Cookies.get(name);
},

set: function(name, value, expires)
{
name = cookiePrefix + name;
if(!expires)

		{
expires = 315360000; // 10*365*24*60*60 => 10 years
}

		{
expires = 315360000; // 10*365*24*60*60 => 10 years
}

Zeile 492Zeile 620
		options = {
expires: expire,
path: cookiePath,

		options = {
expires: expire,
path: cookiePath,

			domain: cookieDomain


			domain: cookieDomain,
secure: cookieSecureFlag == true,

		};


		};


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

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

	},

unset: function(name)

	},

unset: function(name)

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

			path: cookiePath,
domain: cookieDomain
};

		return $.removeCookie(name, options);

		return Cookies.remove(name, options);

	}
};


	}
};


Zeile 525Zeile 654
					return;
}


					return;
}


				expander.click(function()

				expander.on('click', function()

				{
controls = expander.attr("id").replace("_img", "");
expandables.expandCollapse(this, controls);

				{
controls = expander.attr("id").replace("_img", "");
expandables.expandCollapse(this, controls);

Zeile 555Zeile 684
		var collapsedItem = $("#"+controls+"_c");

if(expandedItem.length && collapsedItem.length)

		var collapsedItem = $("#"+controls+"_c");

if(expandedItem.length && collapsedItem.length)

		{
// Expanding
if(expandedItem.is(":hidden"))
{
expandedItem.toggle("fast");
collapsedItem.toggle("fast");
this.saveCollapsed(controls);
}
// Collapsing
else
{

		{
// Expanding
if(expandedItem.is(":hidden"))
{
expandedItem.toggle("fast");
collapsedItem.toggle("fast");
this.saveCollapsed(controls);
}
// Collapsing
else
{

				expandedItem.toggle("fast");
collapsedItem.toggle("fast");
this.saveCollapsed(controls, 1);

				expandedItem.toggle("fast");
collapsedItem.toggle("fast");
this.saveCollapsed(controls, 1);

Zeile 577Zeile 706
			if(expandedItem.is(":hidden"))
{
expandedItem.toggle("fast");

			if(expandedItem.is(":hidden"))
{
expandedItem.toggle("fast");

				element.attr("src", element.attr("src").replace("collapse_collapsed.png", "collapse.png"))

				element.attr("src", element.attr("src").replace(/collapse_collapsed\.(gif|jpg|jpeg|bmp|png)$/i, "collapse.$1"))

									.attr("alt", "[-]")
.attr("title", "[-]");
element.parent().parent('td').removeClass('tcat_collapse_collapsed');

									.attr("alt", "[-]")
.attr("title", "[-]");
element.parent().parent('td').removeClass('tcat_collapse_collapsed');

Zeile 588Zeile 717
			else
{
expandedItem.toggle("fast");

			else
{
expandedItem.toggle("fast");

				element.attr("src", element.attr("src").replace("collapse.png", "collapse_collapsed.png"))

				element.attr("src", element.attr("src").replace(/collapse\.(gif|jpg|jpeg|bmp|png)$/i, "collapse_collapsed.$1"))

									.attr("alt", "[+]")
.attr("title", "[+]");
element.parent().parent('td').addClass('tcat_collapse_collapsed');
element.parent().parent('.thead').addClass('thead_collapsed');
this.saveCollapsed(controls, 1);

									.attr("alt", "[+]")
.attr("title", "[+]");
element.parent().parent('td').addClass('tcat_collapse_collapsed');
element.parent().parent('.thead').addClass('thead_collapsed');
this.saveCollapsed(controls, 1);

			}

			}

		}
return true;
},

		}
return true;
},

Zeile 630Zeile 759
var lang = {

};

var lang = {

};

 

/* add keepelement to jquery-modal plugin */
(function($) {
if(typeof $.modal != 'undefined')
{
$.modal.defaults.keepelement = false;

$.modal.prototype.oldCloseFunction = $.modal.prototype.close;
$.modal.prototype.close = function()
{
this.oldCloseFunction();

// Deletes the element (multi-modal feature: e.g. when you click on multiple report buttons, you will want to see different content for each)
if(!this.options.keepelement)
{
this.$elm.remove();
}
};
}
})(jQuery);



MyBB.init();


MyBB.init();