@avs/go 0.13.71762 → 0.13.71764
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/avs-go.min.js +1 -1
- package/package.json +1 -1
- package/src/avs-go-dataviz.js +2 -2
- package/src/constants.js +1 -1
package/package.json
CHANGED
package/src/avs-go-dataviz.js
CHANGED
|
@@ -224,7 +224,7 @@ export class AvsGoDataViz extends AvsDataSourceMixin(AvsStreamMixin(AvsHttpMixin
|
|
|
224
224
|
</div>
|
|
225
225
|
</div>
|
|
226
226
|
<a class="btn" id="motionCaptureReset" data-tooltip="Reset transform"></a>
|
|
227
|
-
<a class="btn disabled" id="motionCaptureClear" data-tooltip="Clear motion capture
|
|
227
|
+
<a class="btn disabled" id="motionCaptureClear" data-tooltip="Clear motion capture frames"></a>
|
|
228
228
|
<a class="btn disabled" id="motionCaptureCopyData" data-tooltip="Copy motion capture data to clipboard"></a>
|
|
229
229
|
<a class="btn disabled" id="motionCaptureCopyUrl" data-tooltip="Copy motion capture URL to clipboard"></a>
|
|
230
230
|
</div>
|
|
@@ -1689,7 +1689,7 @@ export class AvsGoDataViz extends AvsDataSourceMixin(AvsStreamMixin(AvsHttpMixin
|
|
|
1689
1689
|
// Convert to JSON, compress and base64url encode
|
|
1690
1690
|
const json = JSON.stringify(this.motionCaptureFrames);
|
|
1691
1691
|
const compressed = await this._compress(json);
|
|
1692
|
-
const encoded = compressed.toBase64().
|
|
1692
|
+
const encoded = compressed.toBase64().replaceAll('/', '_').replaceAll('+', '-');
|
|
1693
1693
|
|
|
1694
1694
|
// Create URL and copy to clipboard
|
|
1695
1695
|
const url = window.location.origin + window.location.pathname + "?motionCapture=" + encoded;
|
package/src/constants.js
CHANGED