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

@glomex/glomex-dialog

Package Overview
Dependencies
Maintainers
11
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@glomex/glomex-dialog - npm Package Compare versions

Comparing version 1.15.4 to 1.15.5

2

package.json
{
"name": "@glomex/glomex-dialog",
"version": "1.15.4",
"version": "1.15.5",
"description": "A dialog web component that allows docking a video player or putting it in a lightbox",

@@ -5,0 +5,0 @@ "type": "module",

// when bundled for IE window.EventTarget could be undefined
// and extending "RotateToFullscreen" with "undefined" would lead to
// a failing bundled file
const EventTarget = window.EventTarget || Object;
// only Safari 14 supports using EventTarget constructor
let supportsEventTargetConstructor = false;
try {
new window.EventTarget();
supportsEventTargetConstructor = true;
} catch(e) {
// ignore
}
const EventTarget = supportsEventTargetConstructor
? window.EventTarget
: Object;
/**

@@ -7,0 +19,0 @@ * Handles <glomex-dialog rotate-to-fullscreen>

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