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.18.1 to 2.18.2

2

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

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

import VueScrollTo from './directive'
import { setDefaults } from './scrollTo'
import { setDefaults, scroller } from './scrollTo'

@@ -13,2 +13,3 @@ const install = function(Vue, options) {

window.VueScrollTo.setDefaults = setDefaults
window.VueScrollTo.scroller = scroller
window.Vue.use(install)

@@ -15,0 +16,0 @@ }

/*!
* vue-scrollto v2.18.1
* vue-scrollto v2.18.2
* (c) 2019 Randjelovic Igor

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

typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global['vue-scrollto'] = factory());
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global['vue-scrollto'] = factory());
}(this, (function () { 'use strict';

@@ -515,2 +515,3 @@

window.VueScrollTo.setDefaults = setDefaults;
window.VueScrollTo.scroller = scroller;
window.Vue.use(install);

@@ -517,0 +518,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