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

vue-scrollto

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-scrollto - npm Package Compare versions

Comparing version 2.16.1 to 2.16.2

2

package.json
{
"name": "vue-scrollto",
"version": "2.16.1",
"version": "2.16.2",
"description": "Adds a directive that listens for click events and scrolls to elements.",

@@ -5,0 +5,0 @@ "main": "vue-scrollto.js",

@@ -199,3 +199,3 @@ import BezierEasing from "bezier-easing";

const containerBottom = containerTop + containerHeight;
const elementTop = targetY;
const elementTop = targetY - offset;
const elementBottom = elementTop + element.offsetHeight;

@@ -202,0 +202,0 @@ if (

/*!
* vue-scrollto v2.16.1
* vue-scrollto v2.16.2
* (c) 2019 Randjelovic Igor

@@ -398,3 +398,3 @@ * @license MIT

var containerBottom = containerTop + containerHeight;
var elementTop = targetY;
var elementTop = targetY - offset;
var elementBottom = elementTop + element.offsetHeight;

@@ -401,0 +401,0 @@

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