Skip to content

Commit

Permalink
Merge pull request #1453 from finos/fdc3-for-web-iframe-display]
Browse files Browse the repository at this point in the history
Fdc3 for web iframe display
  • Loading branch information
robmoffat authored Dec 3, 2024
2 parents 70121ac + 95d84ab commit 69d89f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions toolbox/fdc3-for-web/demo/src/client/ui/intent-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ type IframeHello = BrowserTypes.Fdc3UserInterfaceHello

const DEFAULT_COLLAPSED_CSS = {
position: "fixed",
display: "none",
zIndex: "1000",
right: "0",
bottom: "0",
Expand All @@ -18,6 +19,7 @@ const DEFAULT_COLLAPSED_CSS = {

const DEFAULT_EXPANDED_CSS = {
position: "fixed",
display: "block",
zIndex: "1000",
left: "10%",
top: "10%",
Expand Down
6 changes: 4 additions & 2 deletions toolbox/fdc3-for-web/reference-ui/src/intent_resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ window.addEventListener("load", () => {
height: "100%",
top: "0",
left: "0",
position: "fixed"
position: "fixed",
display: "block",
}
}
}
Expand All @@ -193,7 +194,8 @@ window.addEventListener("load", () => {
payload: {
updatedCSS: {
width: "0",
height: "0"
height: "0",
display: "none"
}
}
}
Expand Down

0 comments on commit 69d89f0

Please sign in to comment.