@profitlich/template-toolkit 2.18.0 → 2.18.1
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.
|
@@ -103,6 +103,13 @@ export class MuxPlayer {
|
|
|
103
103
|
player.addEventListener('pause', () => setPlaying('pause'));
|
|
104
104
|
player.addEventListener('ended', () => setPlaying('ended'));
|
|
105
105
|
|
|
106
|
+
console.log(
|
|
107
|
+
'Toolkit Video',
|
|
108
|
+
'width:',container.getBoundingClientRect().width,
|
|
109
|
+
'height:', container.getBoundingClientRect().height,
|
|
110
|
+
'aspectRatio:', aspectRatio
|
|
111
|
+
);
|
|
112
|
+
|
|
106
113
|
container.replaceWith(player);
|
|
107
114
|
setPlaying('false');
|
|
108
115
|
|
package/package.json
CHANGED