(id)
| 518 | }; |
| 519 | var rtcVoiceDatas={}; |
| 520 | var rtcVoicePlay=function(id){ |
| 521 | var audio=$(".recPlay")[0]; |
| 522 | audio.style.display="inline-block"; |
| 523 | if(!(audio.ended || audio.paused)){ |
| 524 | audio.pause(); |
| 525 | }; |
| 526 | audio.src=(window.URL||webkitURL).createObjectURL(rtcVoiceDatas[id].data); |
| 527 | audio.play(); |
| 528 | }; |
| 529 | |
| 530 | |
| 531 | var rtcStatusView=function(){ |
nothing calls this directly
no test coverage detected
searching dependent graphs…