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

dock-spawn-ts

Package Overview
Dependencies
Maintainers
1
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dock-spawn-ts - npm Package Compare versions

Comparing version 2.39.0 to 2.40.0

6

lib/js/SplitterBar.js

@@ -100,4 +100,6 @@ import { EventHandler } from "./EventHandler.js";

for (let f of this.previousContainer.dockManager.iframes) {
this.iframeEventHandlers.push(new EventHandler(f, 'mouseup', this.onMouseUp.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f, 'touchend', this.onMouseUp.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f.contentWindow, 'mousemove', this.onMouseMoved.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f.contentWindow, 'mouseup', this.onMouseUp.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f.contentWindow, 'touchmove', this.onMouseMoved.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f.contentWindow, 'touchend', this.onMouseUp.bind(this)));
}

@@ -104,0 +106,0 @@ }

{
"name": "dock-spawn-ts",
"version": "2.39.0",
"version": "2.40.0",
"description": "DockSpawn Typescript Version",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -130,6 +130,8 @@ import { IDockContainer } from "./interfaces/IDockContainer.js";

if (this.previousContainer.dockManager.iframes){
for (let f of this.previousContainer.dockManager.iframes){
this.iframeEventHandlers.push(new EventHandler(f, 'mouseup', this.onMouseUp.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f, 'touchend', this.onMouseUp.bind(this)));
if (this.previousContainer.dockManager.iframes) {
for (let f of this.previousContainer.dockManager.iframes) {
this.iframeEventHandlers.push(new EventHandler(f.contentWindow, 'mousemove', this.onMouseMoved.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f.contentWindow, 'mouseup', this.onMouseUp.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f.contentWindow, 'touchmove', this.onMouseMoved.bind(this)));
this.iframeEventHandlers.push(new EventHandler(f.contentWindow, 'touchend', this.onMouseUp.bind(this)));
}

@@ -136,0 +138,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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