chatra.swig 608 B

12345678910111213141516171819202122
  1. {%- if theme.chatra.enable %}
  2. {%- if theme.chatra.embed %}
  3. <script>
  4. window.ChatraSetup = {
  5. mode : 'frame',
  6. injectTo: '{{ theme.chatra.embed }}'
  7. };
  8. </script>
  9. {%- endif %}
  10. <script>
  11. (function(d, w, c) {
  12. w.ChatraID = '{{ theme.chatra.id }}';
  13. var s = d.createElement('script');
  14. w[c] = w[c] || function() {
  15. (w[c].q = w[c].q || []).push(arguments);
  16. };
  17. s.async = {{ theme.chatra.async }};
  18. s.src = 'https://call.chatra.io/chatra.js';
  19. if (d.head) d.head.appendChild(s);
  20. })(document, window, 'Chatra');
  21. </script>
  22. {%- endif %}