Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

r1.js 653B

123456789101112131415161718192021222324252627282930313233
  1. function clientResized_dev(clientWidth, clientHeight) {
  2. return {
  3. type: "CLIENT_RESIZED",
  4. clientHeight,
  5. clientWidth
  6. };
  7. }
  8. function dispatch_resize(store = APP.store) {
  9. store.dispatch(clientResized_dev(innerWidth, innerHeight));
  10. clog("dispatch_resize")
  11. }
  12. function add_spans(n=1,xtra=0){
  13. var s = `
  14. <span class="pseudo_vid videocontainer"></span>
  15. `
  16. $(".pseudo_vid").remove()
  17. if (!xtra){
  18. n = n - APP.store.getState()["features/base/participants"].length
  19. }
  20. var k,v
  21. for (var i = 0; i < n; i++) {
  22. // Things[i]
  23. clog("..",i)
  24. $("#filmstripRemoteVideosContainer").append(s)
  25. }
  26. dispatch_resize()
  27. }