webrtc-streaming-core
Advanced tools
Comparing version 1.1.26 to 1.1.27
@@ -31,6 +31,8 @@ import { AxisType } from "../models/hid.model"; | ||
private mouseButtonMovement; | ||
mouseButtonDown(event: { | ||
private mouseButtonDown; | ||
private mouseButtonUp; | ||
MouseButtonDown(event: { | ||
button: number; | ||
}): void; | ||
mouseButtonUp(event: { | ||
MouseButtonUp(event: { | ||
button: number; | ||
@@ -37,0 +39,0 @@ }): void; |
@@ -237,2 +237,10 @@ "use strict"; | ||
return; | ||
this.MouseButtonDown(event); | ||
} | ||
mouseButtonUp(event) { | ||
if (this.disableMouse) | ||
return; | ||
this.MouseButtonUp(event); | ||
} | ||
MouseButtonDown(event) { | ||
let code = keys_model_1.EventCode.MouseDown; | ||
@@ -243,5 +251,3 @@ this.SendFunc((new keys_model_2.HIDMsg(code, { | ||
} | ||
mouseButtonUp(event) { | ||
if (this.disableMouse) | ||
return; | ||
MouseButtonUp(event) { | ||
let code = keys_model_1.EventCode.MouseUp; | ||
@@ -248,0 +254,0 @@ this.SendFunc((new keys_model_2.HIDMsg(code, { |
{ | ||
"name": "webrtc-streaming-core", | ||
"version": "1.1.26", | ||
"version": "1.1.27", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/app.js", |
Sorry, the diff of this file is not supported yet
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
196276
2973