]> git.seodisparate.com/gitweb - subtitle_displayer/commitdiff
Change "play" unicode to "play emoji"
authorStephen Seo <seo.disparate@gmail.com>
Mon, 8 Jul 2024 09:17:20 +0000 (18:17 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Mon, 8 Jul 2024 09:17:20 +0000 (18:17 +0900)
index.html

index df143acc6b954a2b38869a863923571762b495be..e41056864c77de50281c4924c2e3c5cfbed942a6 100644 (file)
         }
         requestAnimationFrame(on_animation_frame);
       } else {
-        document.getElementById("playpause_button").textContent = "â\8fµ";
+        document.getElementById("playpause_button").textContent = "â\96";
         is_playing = false;
       }
     }
           } else {
             is_playing = false;
             let playpause_button = document.getElementById("playpause_button");
-            playpause_button.textContent = "â\8fµ";
+            playpause_button.textContent = "â\96";
             playpause_button.style["transition"] = "all 0s linear";
             playpause_button.style["background-position"] = "left";
           }
   </div>
   <button id="left_button" class="transport_button" type="button">⬅️</button>
   <button id="right_button" class="transport_button" type="button">➡️</button>
-  <button id="playpause_button" class="transport_button" type="button">â\8fµ</button>
+  <button id="playpause_button" class="transport_button" type="button">â\96</button>
 </body>
 </html>