webrtc-streaming-core
Advanced tools
Comparing version 1.1.40 to 1.1.41
@@ -18,2 +18,3 @@ "use strict"; | ||
Toggle(disable) { | ||
console.log(disable ? 'disable touch' : 'enable touch'); | ||
this.disable = disable; | ||
@@ -20,0 +21,0 @@ if (this.disable) |
@@ -18,2 +18,3 @@ "use strict"; | ||
Toggle(disable) { | ||
console.log(disable ? 'disable touch' : 'enable touch'); | ||
this.disable = disable; | ||
@@ -37,3 +38,4 @@ if (this.disable) | ||
for (let i = 0; i < touches.length; i++) { | ||
this.handle_swipe(this.onGoingTouchs.get(touches[i].identifier)); | ||
const touch = this.onGoingTouchs.get(touches[i].identifier); | ||
touch != null ? this.handle_swipe(touch) : null; | ||
this.onGoingTouchs.delete(touches[i].identifier); | ||
@@ -40,0 +42,0 @@ } |
{ | ||
"name": "webrtc-streaming-core", | ||
"version": "1.1.40", | ||
"version": "1.1.41", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/app.js", |
Sorry, the diff of this file is not supported yet
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
200148
3032