123456789101112131415161718192021222324252627282930313233 |
-
-
- function clientResized_dev(clientWidth, clientHeight) {
- return {
- type: "CLIENT_RESIZED",
- clientHeight,
- clientWidth
- };
- }
-
-
- function dispatch_resize(store = APP.store) {
- store.dispatch(clientResized_dev(innerWidth, innerHeight));
- clog("dispatch_resize")
- }
- function add_spans(n=1,xtra=0){
- var s = `
- <span class="pseudo_vid videocontainer"></span>
- `
- $(".pseudo_vid").remove()
- if (!xtra){
- n = n - APP.store.getState()["features/base/participants"].length
- }
- var k,v
- for (var i = 0; i < n; i++) {
- // Things[i]
- clog("..",i)
- $("#filmstripRemoteVideosContainer").append(s)
- }
- dispatch_resize()
- }
-
|