Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Whitespace removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Wojciech Połowniak committed Apr 9, 2017
1 parent 97b4f0a commit 66259dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LiveDevelopment/Agents/RemoteFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,11 +425,11 @@ function RemoteFunctions(config, remoteWSPort) {
offsetTop = 0;

// Probably the easiest way to get elements position without including transform
do{
do {
offsetLeft += el.offsetLeft;
offsetTop += el.offsetTop;
el = el.offsetParent;
} while( el );
} while(el);

var stylesToSet = {
"left": offsetLeft + "px",
Expand Down

0 comments on commit 66259dc

Please sign in to comment.