Socket
Socket
Sign inDemoInstall

vue-marquee-tips

Package Overview
Dependencies
11
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 1.0.2

1

config/index.js

@@ -9,3 +9,2 @@ // see http://vuejs-templates.github.io/webpack for documentation.

assetsRoot: path.resolve(__dirname, '../dist'),
assetsPubRoot: path.resolve(__dirname, '../pub'),
assetsSubDirectory: 'static',

@@ -12,0 +11,0 @@ assetsPublicPath: '',

2

package.json
{
"name": "vue-marquee-tips",
"version": "1.0.1",
"version": "1.0.2",
"description": "A Vue component to marquee-tips",

@@ -5,0 +5,0 @@ "author": "wg <247026287@qq.com>",

@@ -17,7 +17,9 @@ export default {

let i
for (i = 0; i < document.styleSheets[0][cssrules].length; i += 1) {
let rule = document.styleSheets[0][cssrules][i]
if (rule.name === ruleName || rule.selectorText === '.' + ruleName) {
document.styleSheets[0].deleteRule(i)
break
if (document.styleSheets && document.styleSheets.length && document.styleSheets[0][cssrules]) {
for (i = 0; i < document.styleSheets[0][cssrules].length; i += 1) {
let rule = document.styleSheets[0][cssrules][i]
if (rule.name === ruleName || rule.selectorText === '.' + ruleName) {
document.styleSheets[0].deleteRule(i)
break
}
}

@@ -24,0 +26,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc