clr commited on
Commit
035dcc0
1 Parent(s): 38d673a

Update js/js.php

Browse files
Files changed (1) hide show
  1. js/js.php +2 -2
js/js.php CHANGED
@@ -18,7 +18,7 @@ $(function (){
18
 
19
  // Listen for user to play video. ** i added this
20
  vid.addEventListener("play", function(){
21
- $( '.movControl' ).html("&#x2588"); // Change all bullets to "stop".
22
  });
23
 
24
 
@@ -78,7 +78,7 @@ function notPlaying($ref) {
78
  // Set $ref as playing.
79
  function isPlaying($ref) {
80
  $ref.addClass('uttPlaying');
81
- $ref.children(".movControl").html("█"); // Show "stop" icon.
82
  $ref.children(".movControl").addClass("playing");
83
  }
84
 
 
18
 
19
  // Listen for user to play video. ** i added this
20
  vid.addEventListener("play", function(){
21
+ $( '.movControl' ).html("&#9724"); // Change all bullets to "stop".
22
  });
23
 
24
 
 
78
  // Set $ref as playing.
79
  function isPlaying($ref) {
80
  $ref.addClass('uttPlaying');
81
+ $ref.children(".movControl").html("◼"); // Show "stop" icon.
82
  $ref.children(".movControl").addClass("playing");
83
  }
84