blob: 7b9698bc232f621f920dba0c18e4d3d778c70538 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>config-dialog-sk demo</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="text/javascript" charset="utf-8">
// This bit of script loads the custom elements v1 polyfill, but only if required.
if (!window.customElements) {
var newScript = document.createElement('script');
newScript.src =
'https://cdnjs.cloudflare.com/ajax/libs/custom-elements/1.0.8/custom-elements.min.js';
document.write(newScript.outerHTML);
}
</script>
</head>
<body class="body-sk">
<button id="ask">Open Dialog</button>
<confirm-dialog-sk id="dialog"></confirm-dialog-sk>
<h2>Results</h2>
<pre id="results"></pre>
</body>
</html>