How to refresh player dimensions from API ?

Some tabs or applications might trigger a resize for zoomsounds without the window resize

The solution would be to add a simple code to your event:

var dzsap_players = document.querySelectorAll(".audio");

dzsap_players.forEach(function(_c3) { _c3.api_handleResize(); });

in javascript

Was this article helpful?

Related Articles

Leave A Comment?