Vergleich jscripts/general.js - 1.8.9 - 1.8.14

  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');
checkboxes.change(function() {
if(checked && !$(this).prop('checked'))
{
checked = false;
$(allbox).prop('checked', checked);

				}

				}

 
			});
$(this).change(function() {
checked = $(this).is(':checked');
checkboxes.prop('checked', checked);

			});
});


			});
});


Zeile 44Zeile 50
				{
MyBB.markForumRead(this);
});

				{
MyBB.markForumRead(this);
});





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

				element.css("cursor", "pointer");
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);

			});
}

			});
}


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


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

Zeile 62Zeile 68
				{
initialfocus.focus();
}

				{
initialfocus.focus();
}

			});


			});


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

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

			});
}
},


			});
}
},


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

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

Zeile 105Zeile 111
							name: "action",
type: "hidden",
value: "do_deleteevent"

							name: "action",
type: "hidden",
value: "do_deleteevent"

						})
);

if(my_post_key)
{
form.append(
$("<input />",
{
name: "my_post_key",
type: "hidden",
value: my_post_key
})
);
}

form.append(
$("<input />",
{
name: "eid",
type: "hidden",
value: eid
})
);

						})
);

if(my_post_key)
{
form.append(
$("<input />",
{
name: "my_post_key",
type: "hidden",
value: my_post_key
})
);
}











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


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

							name: "delete",

							name: "eid",

							type: "hidden",

							type: "hidden",

							value: 1
})
);

$("body").append(form);
form.submit();
}
}
});
},










							value: eid
})
);

form.append(
$("<input />",
{
name: "delete",
type: "hidden",
value: 1
})
);

$("body").append(form);
form.submit();
}
}
});
},


reputation: function(uid, pid)
{


reputation: function(uid, pid)
{

Zeile 216Zeile 222
		return false;
},


		return false;
},


	whoPosted: function(tid)

	whoPosted: function(tid, sortby)

	{

	{

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


































		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)

	},

markForumRead: function(event)

Zeile 477Zeile 516
	get: function(name)
{
name = cookiePrefix + name;

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

		return $.cookie(name);

		return Cookies.get(name);

	},

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

	},

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

		if(!expires) 

		if(!expires)

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

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

Zeile 495Zeile 534
			expires: expire,
path: cookiePath,
domain: cookieDomain,

			expires: expire,
path: cookiePath,
domain: cookieDomain,

			secure: cookieSecureFlag,

			secure: cookieSecureFlag == true,

		};


		};


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

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

	},

unset: function(name)

	},

unset: function(name)

Zeile 509Zeile 548
			path: cookiePath,
domain: cookieDomain
};

			path: cookiePath,
domain: cookieDomain
};

		return $.removeCookie(name, options);

		return Cookies.remove(name, options);

	}
};


	}
};