Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
Improve swiping a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
fancyapps committed Mar 6, 2017
1 parent 257becb commit 56da359
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions dist/jquery.fancybox.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ==================================================
// fancyBox v3.0.38
// fancyBox v3.0.39
//
// Licensed GPLv3 for open source use
// or fancyBox Commercial License for commercial use
Expand Down Expand Up @@ -2265,7 +2265,7 @@

$.fancybox = {

version : "3.0.38",
version : "3.0.39",
defaults : defaults,


Expand Down Expand Up @@ -3440,7 +3440,7 @@
} else {

// Move back to center
self.instance.update( false, true, ( ( Math.abs( self.distance ) ) * self.speed ) / 50 );
self.instance.update( false, true, 150 );

}

Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.fancybox.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fancybox",
"description": "Touch enabled, responsive and fully customizable jQuery lightbox script",
"version": "3.0.38",
"version": "3.0.39",
"homepage": "http://fancyapps.com/fancybox/",
"main": "./dist/jquery.fancybox.min.js",
"author": "fancyApps",
Expand Down
2 changes: 1 addition & 1 deletion src/js/guestures.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@
} else {

// Move back to center
self.instance.update( false, true, ( ( Math.abs( self.distance ) ) * self.speed ) / 50 );
self.instance.update( false, true, 150 );

}

Expand Down

0 comments on commit 56da359

Please sign in to comment.