BLUSHIF

Github(for ama)

Jul 30th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var xnte = 0;
  2. mute.onclick = function () {
  3. var cli = "#" + webrtc.getDomId(peer);
  4. xnte = xnte + 1;
  5. if (xnte % 2 == 0) {
  6. $(cli).prop('muted', true);
  7. img.src = 'muted.png'
  8. } else {
  9. $(cli).prop('muted', false);
  10. img.src = 'speaker.png'
  11. }
  12. };
Advertisement
Add Comment
Please, Sign In to add comment