Skip to content

Commit

Permalink
2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
desandro committed Dec 19, 2021
1 parent 2b91b78 commit 484fc8a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Rad because it supports IE10+ and touch devices.

Draggabilly v2.4.0
Draggabilly v2.4.1

## Install

Expand Down
14 changes: 9 additions & 5 deletions dist/draggabilly.pkgd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Draggabilly PACKAGED v2.4.0
* Draggabilly PACKAGED v2.4.1
* Make that shiz draggable
* https://draggabilly.desandro.com
* MIT license
Expand Down Expand Up @@ -473,7 +473,7 @@ return EvEmitter;
}));

/*!
* Unipointer v2.3.0
* Unipointer v2.4.0
* base class for doing one thing with pointer event
* MIT license
*/
Expand Down Expand Up @@ -776,7 +776,7 @@ return Unipointer;
}));

/*!
* Unidragger v2.3.0
* Unidragger v2.4.0
* Draggable base class
* MIT license
*/
Expand Down Expand Up @@ -866,7 +866,11 @@ proto.pointerDown = function( event, pointer ) {
return;
}
// track start event position
this.pointerDownPointer = pointer;
// Safari 9 overrides pageX and pageY. These values needs to be copied. flickity#842
this.pointerDownPointer = {
pageX: pointer.pageX,
pageY: pointer.pageY,
};

event.preventDefault();
this.pointerDownBlur();
Expand Down Expand Up @@ -1056,7 +1060,7 @@ return Unidragger;
}));

/*!
* Draggabilly v2.4.0
* Draggabilly v2.4.1
* Make that shiz draggable
* https://draggabilly.desandro.com
* MIT license
Expand Down
10 changes: 5 additions & 5 deletions dist/draggabilly.pkgd.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion draggabilly.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Draggabilly v2.4.0
* Draggabilly v2.4.1
* Make that shiz draggable
* https://draggabilly.desandro.com
* MIT license
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "draggabilly",
"version": "2.4.0",
"version": "2.4.1",
"description": "make that shiz draggable",
"main": "draggabilly.js",
"scripts": {
Expand Down

0 comments on commit 484fc8a

Please sign in to comment.