Made outerHeight/outerWidth accept .outerWidth(true) to include the margin. If any options are passed in it's assumed that you want the margin included.

This commit is contained in:
John Resig 2008-03-15 19:00:07 +00:00
parent 8f14ee1dd5
commit d44ddef720

View file

@ -111,15 +111,12 @@ jQuery.each(["Height", "Width"], function(i, name){
}; };
// outerHeight and outerWidth // outerHeight and outerWidth
jQuery.fn["outer" + name] = function(options) { jQuery.fn["outer" + name] = function(margin) {
options = jQuery.extend({ margin: false }, options);
return this["inner" + name]() + return this["inner" + name]() +
num(this, "border" + tl + "Width") + num(this, "border" + tl + "Width") +
num(this, "border" + br + "Width") + num(this, "border" + br + "Width") +
(options.margin ? (!!margin ?
num(this, "margin" + tl) + num(this, "margin" + br) : num(this, "margin" + tl) + num(this, "margin" + br) : 0);
0);
}; };
}); });