You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 7, 2023. It is now read-only.
// watch the iframe source so that it can be sent back to everyone else.
42
+
functionreceiveIframeMessage(event) {
43
+
44
+
// does the origin sending the message match the current host? ifnot dev/null the request
45
+
if ((window.location.protocol !="file:") && (event.origin !== window.location.protocol+"//"+window.location.host)) {
46
+
return;
47
+
}
48
+
49
+
if (event.data.path != undefined) {
50
+
var path = window.location.protocol+"//"+window.location.host+window.location.pathname.replace("styleguide\/html\/styleguide.html","")+event.data.path;
0 commit comments