Skip to content

Commit

Permalink
Fixed drag-scrolling
Browse files Browse the repository at this point in the history
fixes #2340
  • Loading branch information
brandonkelly committed Jun 29, 2018
1 parent be17460 commit e67236f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# Fixed
- Fixed a bug where user verification links could get mangled when emails were parsed as Markdown, if the verification code contained two or more underscores.
- Fixed a bug where Craft was misinterpreting `X-Forwarded-For` headers as the user’s IP instead of the server’s IP. ([#3036](https://github.com/craftcms/cms/issues/3036))
- Fixed a bug where Craft wasn’t auto-scrolling the content container when dragging items near a window edge. ([#2340](https://github.com/craftcms/cms/issues/2340))

## 3.0.13.2 - 2018-06-27

Expand Down
4 changes: 2 additions & 2 deletions src/web/assets/cp/dist/js/Craft.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! - 2018-06-26 */
/*! - 2018-06-28 */
(function($){

/** global: Craft */
Expand Down Expand Up @@ -11398,7 +11398,7 @@ Craft.CP = Garnish.Base.extend(
JOB_STATUS_FAILED: 4
});

Garnish.$scrollContainer = $('#content-container');
Garnish.$scrollContainer = $('#content');
Craft.cp = new Craft.CP();


Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/js/Craft.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/js/Craft.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/cp/src/js/CP.js
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ Craft.CP = Garnish.Base.extend(
JOB_STATUS_FAILED: 4
});

Garnish.$scrollContainer = $('#content-container');
Garnish.$scrollContainer = $('#content');
Craft.cp = new Craft.CP();


Expand Down

0 comments on commit e67236f

Please sign in to comment.