Skip to content

Commit 2720345

Browse files
committed
merge sandbox pr, update and release
1 parent 27096c3 commit 2720345

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

dist/vue-friendly-iframe.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vue-friendly-iframe v0.19.0 (https://github.com/officert/vue-friendly-iframe)
3-
* (c) 2020 Tim Officer
2+
* vue-friendly-iframe v0.20.0 (https://github.com/officert/vue-friendly-iframe)
3+
* (c) 2021 Tim Officer
44
* Released under the MIT License.
55
*/
66
(function webpackUniversalModuleDefinition(root, factory) {
@@ -243,6 +243,10 @@ exports.default = {
243243
title: {
244244
type: String,
245245
required: false
246+
},
247+
sandbox: {
248+
type: String,
249+
required: false
246250
}
247251
},
248252
data: function data() {
@@ -291,6 +295,7 @@ exports.default = {
291295
if (this.allow) this.iframeEl.setAttribute('allow', this.allow);
292296
if (this.name) this.iframeEl.setAttribute('name', this.name);
293297
if (this.title) this.iframeEl.setAttribute('title', this.title);
298+
if (this.sandbox) this.iframeEl.setAttribute('sandbox', this.sandbox);
294299

295300
this.$el.appendChild(this.iframeEl);
296301

dist/vue-friendly-iframe.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/docs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-friendly-iframe",
3-
"version": "0.19.0",
3+
"version": "0.20.0",
44
"description": "Vue component for creating dynamic async iframes",
55
"main": "dist/vue-friendly-iframe.js",
66
"scripts": {

0 commit comments

Comments
 (0)