summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2010-09-14 07:28:15 +0000
committerTed Trask <ttrask01@yahoo.com>2010-09-14 07:28:15 +0000
commit4e82cf1b8ba3f125b58fbc6af14447788611df2f (patch)
treed382480fa4ee04e42867f2ab62e5c5cdeadb7159
parent397d59e98f23ab208f15f930a0c32aee1900a2ed (diff)
downloadacf-freeswitch-vmail-4e82cf1b8ba3f125b58fbc6af14447788611df2f.tar.bz2
acf-freeswitch-vmail-4e82cf1b8ba3f125b58fbc6af14447788611df2f.tar.xz
Fixed play button to work on all browsers.
-rw-r--r--vmail-listmessages-html.lsp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmail-listmessages-html.lsp b/vmail-listmessages-html.lsp
index 26373cf..f0d44b3 100644
--- a/vmail-listmessages-html.lsp
+++ b/vmail-listmessages-html.lsp
@@ -40,7 +40,7 @@ end
<script type="text/javascript">
function PlayMessage() {
$(".temporaryplayer").remove();
- $(this).parent().parent().after("<tr class='temporaryplayer'><td colspan='9'><embed width='100%' height='25px' marginheight='0' marginwidth='0' frameborder='0' scrolling='no' autostart='false' autoplay='false' loop='false' src='" + $(this).attr("href") + "'></embed></TD></TR>");
+ $(this).parent().parent().after("<tr class='temporaryplayer'><td colspan='9'><embed width='100%' height='25px' autostart='1' playcount='1' src='" + $(this).attr("href") + "' type='application/x-mplayer2'></embed></TD></TR>");
return false;
}
function HandleMulti() {