40 lines
660 B
HTML
40 lines
660 B
HTML
<dom-module id='ha-panel-iframe'>
|
|
<template>
|
|
<style>
|
|
iframe {
|
|
border: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
|
|
<partial-base narrow="[[narrow]]" show-menu='[[showMenu]]'>
|
|
<span header-title>[[panel.title]]</span>
|
|
|
|
<iframe
|
|
src='[[panel.config.url]]'
|
|
sandbox="allow-forms allow-popups allow-pointer-lock allow-same-origin allow-scripts"
|
|
></iframe>
|
|
</template>
|
|
</dom-module>
|
|
|
|
<script>
|
|
Polymer({
|
|
is: 'ha-panel-iframe',
|
|
|
|
properties: {
|
|
panel: {
|
|
type: Object,
|
|
},
|
|
|
|
narrow: {
|
|
type: Boolean,
|
|
},
|
|
|
|
showMenu: {
|
|
type: Boolean,
|
|
},
|
|
},
|
|
});
|
|
</script>
|