rating.swig 679 B

12345678910111213141516171819202122
  1. {%- if theme.rating.enable %}
  2. <script{{ pjax }}>
  3. if (CONFIG.page.isPost) {
  4. wpac_init = window.wpac_init || [];
  5. wpac_init.push({
  6. widget: 'Rating',
  7. id : {{ theme.rating.id }},
  8. el : 'wpac-rating',
  9. color : '{{ theme.rating.color }}'
  10. });
  11. (function() {
  12. if ('WIDGETPACK_LOADED' in window) return;
  13. WIDGETPACK_LOADED = true;
  14. var mc = document.createElement('script');
  15. mc.type = 'text/javascript';
  16. mc.async = true;
  17. mc.src = '//embed.widgetpack.com/widget.js';
  18. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(mc, s.nextSibling);
  19. })();
  20. }
  21. </script>
  22. {%- endif %}