|
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<meta name="viewport" content="width=device-width" /> |
|
<title>Static Space URL sync example</title> |
|
</head> |
|
<body> |
|
<label for=""> |
|
Query string |
|
<input type="text" id="query"> |
|
</label> |
|
<label> |
|
Hash |
|
<input type="text" id="hash"> |
|
</label> |
|
<button onclick="sync()">Sync</button> |
|
|
|
<script> |
|
function sync() { |
|
const queryString = document.getElementById("query").value; |
|
const hash = document.getElementById("hash").value; |
|
|
|
|
|
window.parent.postMessage({ |
|
queryString, |
|
hash, |
|
}, "https://huggingface.co"); |
|
} |
|
</script> |
|
</body> |
|
</html> |
|
|