blob: 17778f8f319d99f27a268957c349f5b891717d9a [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>
<button id=ask>Open Dialog</button>
<confirm-dialog-sk id=dialog></confirm-dialog-sk>
<h2>Results</h2>
<pre id=results></pre>
</body>
</html>