diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2017-09-20 09:12:35 -0500 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2017-09-20 09:12:35 -0500 |
commit | 152903758ca2e868567b99c3e30860fba3f6175d (patch) | |
tree | 9cc239154e936d90bf3b3e8b9ca121167a8fa60a /app/assets | |
parent | 727f51b8ef0af2b78087b4ac894ee728bfbabd1f (diff) | |
download | gitlab-ce-152903758ca2e868567b99c3e30860fba3f6175d.tar.gz |
Fix image diff swipe handle offset to correctly align with the framefix-image-diff-swipe-handle
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/javascripts/commit/image_file.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/javascripts/commit/image_file.js b/app/assets/javascripts/commit/image_file.js index 17d14dc1e79..bb33e9eb783 100644 --- a/app/assets/javascripts/commit/image_file.js +++ b/app/assets/javascripts/commit/image_file.js @@ -134,8 +134,9 @@ width: maxWidth + 1, height: maxHeight + 2 }); + // Set swipeBar left position to match image frame $swipeBar.css({ - left: 0 + left: 1 }); wrapPadding = parseInt($swipeWrap.css('right').replace('px', ''), 10); |