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.4 to 0.2.5

5

lib/core/index.js

@@ -576,5 +576,6 @@ 'use strict';

var tapSecond = date.getTime();
if (Math.abs(this.tapSecond - tapSecond) <= 500) {
var offset = this.tapSecond - tapSecond;
this.tapSecond = tapSecond;
if (Math.abs(offset) <= 500) {
this.e.preventDefault();
this.tapSecond = tapSecond;
this.zoomPhoto();

@@ -581,0 +582,0 @@ return;

2

package.json
{
"name": "smartphoto",
"version": "0.2.4",
"version": "0.2.5",
"description": "smartphoto",

@@ -5,0 +5,0 @@ "homepage": "http://developer.a-blogcms.jp",

@@ -521,5 +521,6 @@ import aTemplate from 'a-template';

const tapSecond = date.getTime();
if(Math.abs(this.tapSecond - tapSecond) <= 500) {
const offset = this.tapSecond - tapSecond;
this.tapSecond = tapSecond;
if(Math.abs(offset) <= 500) {
this.e.preventDefault();
this.tapSecond = tapSecond;
this.zoomPhoto();

@@ -526,0 +527,0 @@ return;

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