Skip to content

Commit 2a2b5e8

Browse files
author
Joel Steres
committed
Retab.
1 parent 48a9ced commit 2a2b5e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utility.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ function isPositionNotStatic(element) {
226226
function getElementOffsets(el, windowWidth, windowHeight) {
227227
// jquery offset returns top and left relative to document in pixels.
228228
var offsets = el.offset();
229-
// right and bottom offset relative to window width/height
229+
// right and bottom offset relative to window width/height
230230
offsets.right = windowWidth - el.outerWidth() - offsets.left;
231231
offsets.bottom = windowHeight - el.outerHeight() - offsets.top;
232232
return offsets;

0 commit comments

Comments
 (0)