mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
Move Add-on SDK source to toolkit/jetpack
This commit is contained in:
parent
0a03067ee3
commit
23b67db438
993 changed files with 484 additions and 100663 deletions
18
toolkit/jetpack/sdk/ui/frame/view.html
Normal file
18
toolkit/jetpack/sdk/ui/frame/view.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script>
|
||||
// HACK: This is not an ideal way to deliver chrome messages
|
||||
// to an inner frame content but seems only way that would
|
||||
// make `event.source` this (outer frame) window.
|
||||
window.onmessage = function(event) {
|
||||
var frame = document.querySelector("iframe");
|
||||
var content = frame.contentWindow;
|
||||
// If message is posted from chrome it has no `event.source`.
|
||||
if (event.source === null)
|
||||
content.postMessage(event.data, "*");
|
||||
};
|
||||
</script>
|
||||
</head>
|
||||
<body style="overflow: hidden"></body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue