vue-scrollto
Advanced tools
Comparing version 2.18.1 to 2.18.2
{ | ||
"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 @@ } |
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
37709
803