|
@@ -18,6 +18,45 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
(function() {
|
|
|
+ var root = document.getElementById('js-demo-{{ $uniq }}');
|
|
|
+ var template = document.getElementById('template-{{ $uniq }}');
|
|
|
+ var demoDiv = document.createElement('div');
|
|
|
+ demoDiv.innerHTML = template.innerHTML;
|
|
|
+ var standaloneScript = demoDiv.querySelector('script');
|
|
|
+ standaloneScript.textContent = '(function() { document.getElementsByTagName(\'html\')[0].setAttribute(\'lang\', \'en\'); var demo = document; ' + standaloneScript.textContent + ' })();';
|
|
|
+
|
|
|
+ if (document.head.attachShadow) {
|
|
|
+ var templateScript = template.content.querySelector('script');
|
|
|
+ if (templateScript) {
|
|
|
+ var wrappedScript = '(function() { var demo = document.getElementById(\'js-demo-{{ $uniq }}\').shadowRoot;' + templateScript.textContent + '})();';
|
|
|
+ templateScript.textContent = wrappedScript;
|
|
|
+ }
|
|
|
+ root.attachShadow({mode: 'open'});
|
|
|
+ root.shadowRoot.appendChild(document.importNode(template.content, true));
|
|
|
+ } else {
|
|
|
+ root.innerHTML = '<p class="site-error"><strong style="font-weight:bold">Site error:</strong> A browser supporting Shadow DOM is needed to run encapsulated demos. You can launch the demo in a separate window ↓</p>';
|
|
|
+ }
|
|
|
+
|
|
|
+ var launchButton = document.querySelector('[data-launch="js-demo-{{ $uniq }}"]');
|
|
|
+ launchButton.addEventListener('click', function () {
|
|
|
+ var standalone = window.open();
|
|
|
+ standalone.document.body.appendChild(demoDiv);
|
|
|
+
|
|
|
+ // For activating the script :-(
|
|
|
+ var newScript = standalone.document.createElement('script');
|
|
|
+ var oldScript = standalone.document.querySelector('script');
|
|
|
+ newScript.textContent = oldScript.textContent;
|
|
|
+ oldScript.parentNode.removeChild(oldScript);
|
|
|
+ standalone.document.body.appendChild(newScript);
|
|
|
+
|
|
|
+ {{ if .Get "backgroundColor" }}
|
|
|
+ standalone.document.body.style.backgroundColor = {{ .Get "backgroundColor" | safeCSS }};
|
|
|
+ {{ end }}
|
|
|
+
|
|
|
+ standalone.document.title = 'demo ' + {{ $uniq }};
|
|
|
+ });
|
|
|
+ })();
|
|
|
+ /*(function() {
|
|
|
var root = document.getElementById('js-demo-{{ $uniq }}');
|
|
|
var template = document.getElementById('template-{{ $uniq }}');
|
|
|
var script = template.content.querySelector('script');
|
|
@@ -35,16 +74,6 @@
|
|
|
root.innerHTML = '<p class="site-error"><strong style="font-weight:bold">Site error:</strong> A browser supporting Shadow DOM is needed to run encapsulated demos. You can launch the demo in a separate window ↓</p>';
|
|
|
}
|
|
|
|
|
|
- /*var launchButton = document.querySelector('[data-launch="js-demo-{{ $uniq }}"]');
|
|
|
- launchButton.addEventListener('click', function () {
|
|
|
- var standalone = window.open();
|
|
|
- script.textContent = standaloneScript;
|
|
|
- standalone.document.body.appendChild(template.content.cloneNode(true));
|
|
|
- {{ if .Get "backgroundColor" }}
|
|
|
- standalone.document.body.style.backgroundColor = {{ .Get "backgroundColor" | safeCSS }};
|
|
|
- {{ end }}
|
|
|
- standalone.document.title = 'demo ' + {{ $uniq }};
|
|
|
- });*/
|
|
|
var launchButton = document.querySelector('[data-launch="js-demo-{{ $uniq }}"]');
|
|
|
launchButton.addEventListener('click', function () {
|
|
|
var standalone = window.open();
|
|
@@ -52,7 +81,7 @@
|
|
|
var demoDiv = document.createElement('div');
|
|
|
demoDiv.innerHTML = template.innerHTML;
|
|
|
standalone.document.body.appendChild(demoDiv);
|
|
|
-
|
|
|
+
|
|
|
// For activating the script :-(
|
|
|
var newScript = standalone.document.createElement('script');
|
|
|
var oldScript = standalone.document.querySelector('script');
|
|
@@ -66,6 +95,6 @@
|
|
|
|
|
|
standalone.document.title = 'demo ' + {{ $uniq }};
|
|
|
});
|
|
|
- })();
|
|
|
+ })();*/
|
|
|
</script>
|
|
|
</div>
|