Corrected preloaded icon image paths in HTML5 audio player Javascript.

This commit is contained in:
Nate Jones 2014-09-11 04:16:13 +00:00
parent cc1d6afb6e
commit 201b6768d0
2 changed files with 4 additions and 4 deletions

View File

@ -1077,8 +1077,8 @@ legend {
<script type='text/javascript'> <script type='text/javascript'>
// preload images // preload images
img_play = new Image(); img_play.src = "<?=$v_link_label_play?>"; img_play = new Image(); img_play.src = "<?php echo PROJECT_PATH; ?>/themes/enhanced/images/icon_play.png";
img_pause = new Image(); img_pause.src = "<?=$v_link_label_pause?>"; img_pause = new Image(); img_pause.src = "<?php echo PROJECT_PATH; ?>/themes/enhanced/images/icon_pause.png";
var recording_audio; var recording_audio;

View File

@ -1091,8 +1091,8 @@ legend {
<script type='text/javascript'> <script type='text/javascript'>
// preload images // preload images
img_play = new Image(); img_play.src = "<?=$v_link_label_play?>"; img_play = new Image(); img_play.src = "<?php echo PROJECT_PATH; ?>/themes/minimized/images/icon_play.png";
img_pause = new Image(); img_pause.src = "<?=$v_link_label_pause?>"; img_pause = new Image(); img_pause.src = "<?php echo PROJECT_PATH; ?>/themes/minimized/images/icon_pause.png";
var recording_audio; var recording_audio;