Explorar el Código

Firefox seems to only respect the legacy allowfullscreen attribute

Penar Musaraj hace 4 años
padre
commit
fbe97eefab
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      assets/javascripts/discourse/initializers/bbb.js.es6

+ 1 - 1
assets/javascripts/discourse/initializers/bbb.js.es6

@@ -18,7 +18,7 @@ function launchBBB($elem, fullWindow) {
         } else {
           $elem.children().hide();
           $elem.append(
-            `<iframe src="${res.url}" allow="camera;microphone;fullscreen;speaker" width="690" height="500" style="border:none"></iframe>`
+            `<iframe src="${res.url}" allowfullscreen="true" allow="camera; microphone; fullscreen; speaker" width="690" height="500" style="border:none"></iframe>`
           );
         }
       }