33 |
34 |
35 | 36 |
37 | 38 | <%= link to: Routes.room_new_path(@socket, :new), id: "leave-call", class: "video-container__control" do %> 39 | 40 | <% end %> 41 |
42 |
43 | 44 | <%= for uuid <- @connected_users do %> 45 |
46 | 47 |
48 | <% end %> 49 |
50 |
51 | <%= for sdp_offer <- @sdp_offers do %> 52 | " data-sdp="<%= sdp_offer["description"]["sdp"] %>"> 53 | <% end %> 54 |
55 | 56 |
57 | <%= for answer <- @answers do %> 58 | " data-sdp="<%= answer["description"]["sdp"] %>"> 59 | <% end %> 60 |
61 | 62 |
63 | <%= for ice_candidate_offer <- @ice_candidate_offers do %> 64 | " data-ice-candidate="<%= Jason.encode!(ice_candidate_offer["candidate"]) %>"> 65 | <% end %> 66 |
67 | 68 |
69 | <%= for request <- @offer_requests do %> 70 | 71 | <% end %> 72 |
73 |