aboutsummaryrefslogtreecommitdiffstats
path: root/ui/position.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/position.js')
-rw-r--r--ui/position.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/ui/position.js b/ui/position.js
index 41e5b6432..1ef4d4c5b 100644
--- a/ui/position.js
+++ b/ui/position.js
@@ -130,11 +130,8 @@ $.position = {
offset: withinElement.offset() || { left: 0, top: 0 },
scrollLeft: withinElement.scrollLeft(),
scrollTop: withinElement.scrollTop(),
-
- // support: jQuery 1.6.x
- // jQuery 1.6 doesn't support .outerWidth/Height() on documents or windows
- width: isWindow || isDocument ? withinElement.width() : withinElement.outerWidth(),
- height: isWindow || isDocument ? withinElement.height() : withinElement.outerHeight()
+ width: withinElement.outerWidth(),
+ height: withinElement.outerHeight()
};
}
};