app/template/default/Block/topic.twig line 1

Open in your IDE?
  1. <script>
  2. (function () {
  3.     var button = document.getElementById('creditCardNoticeButton');
  4.     var body = document.getElementById('creditCardNoticeBody');
  5.     var arrow = document.getElementById('creditCardNoticeArrow');
  6.     if (!button || !body) {
  7.         return;
  8.     }
  9.     button.addEventListener('click', function () {
  10.         if (body.style.display === 'none' || body.style.display === '') {
  11.             body.style.display = 'block';
  12.             if (arrow) {
  13.                 arrow.innerHTML = '▲';
  14.             }
  15.         } else {
  16.             body.style.display = 'none';
  17.             if (arrow) {
  18.                 arrow.innerHTML = '▼';
  19.             }
  20.         }
  21.     });
  22. })();
  23. </script>
  24. <!--<div class="ec_topicRole">
  25.   <div class="ec_topicRole_page">
  26.     <a href="" style="width:100%;" alt="MS Rock TV Event"></a>
  27.   </div>
  28. </div>-->