inline-player.html 661 B

12345678910111213141516171819
  1. {% assign id = include.id %}
  2. {% if id and include.embed-id %}
  3. <div id="player-{{ id }}" data-plyr-provider="{{ include.type | default: 'youtube' }}" data-plyr-embed-id="{{ include.embed-id }}"></div>
  4. {% capture_global scripts %}
  5. <script>
  6. // @formatter:off
  7. document.addEventListener("DOMContentLoaded", function () {
  8. {% if jekyll.environment == 'development' %}
  9. window.tabler_player = window.tabler_player || {};
  10. {% endif %}
  11. window.Plyr && ({% if jekyll.environment == 'development' %}window.tabler_player["player-{{ id }}"] = {% endif %}new Plyr('#player-{{ id }}'));
  12. });
  13. // @formatter:on
  14. </script>
  15. {% endcapture_global %}
  16. {% endif %}