New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vuetify-multiple-draggable-dialogs

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vuetify-multiple-draggable-dialogs - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

2

package.json
{
"name": "vuetify-multiple-draggable-dialogs",
"version": "1.1.3",
"version": "1.1.4",
"description": "A mixin that gives ability to have multiple active draggable dialogs",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -14,8 +14,12 @@ const container = {};

}
// if must contain needed class
if (!event.target.classList.contains('v-card__title')) {
return;
}
return event.target.closest(dialogSelector);
let dialog;
// target must contain one of provided classes
['v-card__title', 'v-toolbar__content', 'v-toolbar__title'].forEach((className) => {
if (event.target.classList.contains(className)) {
dialog = event.target.closest(dialogSelector);
}
});
return dialog
}

@@ -22,0 +26,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