Skip to content

Commit 14561e4

Browse files
committed
removing true from outerWidth/outerHeight to solve Safari Issue (fixes #2983 - unresolved bug still exists in dimension)
1 parent 4078d09 commit 14561e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/effects.transfer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ $.effects.transfer = function(o) {
3131
transfer.css({
3232
top: position.top,
3333
left: position.left,
34-
height: el.outerHeight(true) - parseInt(transfer.css('borderTopWidth')) - parseInt(transfer.css('borderBottomWidth')),
35-
width: el.outerWidth(true) - parseInt(transfer.css('borderLeftWidth')) - parseInt(transfer.css('borderRightWidth')),
34+
height: el.outerHeight() - parseInt(transfer.css('borderTopWidth')) - parseInt(transfer.css('borderBottomWidth')),
35+
width: el.outerWidth() - parseInt(transfer.css('borderLeftWidth')) - parseInt(transfer.css('borderRightWidth')),
3636
position: 'absolute'
3737
});
3838

0 commit comments

Comments
 (0)