Spaces:
Running
Running
Update js/js.php
Browse files
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("&#
|
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("&#
|
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("◼"); // 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 |
|