Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

smartphoto

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smartphoto - npm Package Compare versions

Comparing version 0.2.12 to 0.2.13

8

lib/core/index.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc