@bigbinary/neeto-editor 1.47.44 → 1.47.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Editor.js +5 -3
- package/dist/Editor.js.map +1 -1
- package/dist/cjs/Editor.cjs.js +5 -3
- package/dist/cjs/Editor.cjs.js.map +1 -1
- package/dist/editor-stats.html +1 -1
- package/package.json +1 -1
package/dist/Editor.js
CHANGED
|
@@ -20123,8 +20123,8 @@ var getEmbedAttributes = function getEmbedAttributes() {
|
|
|
20123
20123
|
"default": null
|
|
20124
20124
|
},
|
|
20125
20125
|
frameBorder: "0",
|
|
20126
|
-
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",
|
|
20127
|
-
allowfullscreen:
|
|
20126
|
+
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen",
|
|
20127
|
+
allowfullscreen: true
|
|
20128
20128
|
};
|
|
20129
20129
|
};
|
|
20130
20130
|
var renderEmbedHTML = function renderEmbedHTML(node, HTMLAttributes, options) {
|
|
@@ -20137,7 +20137,9 @@ var renderEmbedHTML = function renderEmbedHTML(node, HTMLAttributes, options) {
|
|
|
20137
20137
|
}, ["div", {
|
|
20138
20138
|
"class": "neeto-editor__video-iframe",
|
|
20139
20139
|
style: "width: ".concat(figwidth, "px; height: ").concat(figheight, "px;")
|
|
20140
|
-
}, ["iframe", mergeAttributes(options.HTMLAttributes, HTMLAttributes)
|
|
20140
|
+
}, ["iframe", mergeAttributes(options.HTMLAttributes, _objectSpread$1(_objectSpread$1({}, HTMLAttributes), {}, {
|
|
20141
|
+
allowfullscreen: true
|
|
20142
|
+
}))]]];
|
|
20141
20143
|
};
|
|
20142
20144
|
var renderUploadHTML = function renderUploadHTML(node, HTMLAttributes, options) {
|
|
20143
20145
|
var _node$attrs2 = node.attrs,
|