diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 860f1097a..e31437368 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -877,7 +877,7 @@ iframe.allowFullscreen = true; iframe.setAttribute("allowfullscreen",""); // for IE11 iframe.setAttribute("onmousewheel",""); // for Safari on Mac - iframe.setAttribute("allow", "autoplay"); + iframe.setAttribute("allow", "autoplay; camera; microphone; display-capture"); if (config.type == "mobile") { diff --git a/apps/common/main/lib/view/Plugins.js b/apps/common/main/lib/view/Plugins.js index a1bee256d..cfcc6c050 100644 --- a/apps/common/main/lib/view/Plugins.js +++ b/apps/common/main/lib/view/Plugins.js @@ -210,6 +210,7 @@ define([ this.iframePlugin.align = "top"; this.iframePlugin.frameBorder = 0; this.iframePlugin.scrolling = "no"; + this.iframePlugin.allow = "camera; microphone; display-capture"; this.iframePlugin.onload = _.bind(this._onLoad,this); this.currentPluginFrame.append(this.iframePlugin); @@ -393,6 +394,7 @@ define([ iframe.align = "top"; iframe.frameBorder = 0; iframe.scrolling = "no"; + iframe.allow = "camera; microphone; display-capture"; iframe.onload = _.bind(this._onLoad,this); var me = this;