smartphoto
Advanced tools
Comparing version 0.2.12 to 0.2.13
@@ -599,6 +599,10 @@ 'use strict'; | ||
var offset = this.tapSecond - tapSecond; | ||
var swipeWidth = this.oldPos.x - this.firstPos.x; | ||
var swipeHeight = this.oldPos.y - this.firstPos.y; | ||
var swipeWidth = 0; | ||
var swipeHeight = 0; | ||
this.isSwipable = false; | ||
this.onListMove = false; | ||
if (this.oldPos) { | ||
swipeWidth = this.oldPos.x - this.firstPos.x; | ||
swipeHeight = this.oldPos.y - this.firstPos.y; | ||
} | ||
@@ -605,0 +609,0 @@ if (this.isBeingZoomed) { |
{ | ||
"name": "smartphoto", | ||
"version": "0.2.12", | ||
"version": "0.2.13", | ||
"description": "smartphoto", | ||
@@ -5,0 +5,0 @@ "homepage": "http://developer.a-blogcms.jp", |
@@ -537,6 +537,10 @@ import aTemplate from 'a-template'; | ||
const offset = this.tapSecond - tapSecond; | ||
const swipeWidth = this.oldPos.x - this.firstPos.x; | ||
const swipeHeight = this.oldPos.y - this.firstPos.y; | ||
let swipeWidth = 0; | ||
let swipeHeight = 0; | ||
this.isSwipable = false; | ||
this.onListMove = false; | ||
if(this.oldPos) { | ||
swipeWidth = this.oldPos.x - this.firstPos.x; | ||
swipeHeight = this.oldPos.y - this.firstPos.y; | ||
} | ||
@@ -543,0 +547,0 @@ if (this.isBeingZoomed) { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7385517
13287