From 7b1ec939b65e87ad55e82d4134d5658f214834d2 Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Tue, 21 May 2019 16:49:48 -0400 Subject: [PATCH] fixed embed.html flexbox --- embed.html | 5 ++++- src/ui.ts | 7 +++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/embed.html b/embed.html index 2b0a4fd7..e2036c3a 100644 --- a/embed.html +++ b/embed.html @@ -13,8 +13,11 @@ align-items: center; justify-content: center; } +#emuscreen { + flex-grow: 1; +} .emuvideo { - height:80%; + width:90%; border-radius:20px; border: 4px solid #222; outline-color: #666; diff --git a/src/ui.ts b/src/ui.ts index 62a15003..8b7def59 100644 --- a/src/ui.ts +++ b/src/ui.ts @@ -572,6 +572,13 @@ function pushChangesToGithub(message:string) { files.push({path:newpath, data:data}); } } + // TODO: include built ROM file in bin/[mainfile].rom + /* + if (current_output instanceof Uint8Array) { + let binpath = "bin/"+getCurrentMainFilename()+".rom"; + files.push({path:binpath, data:current_output}); + } + */ // push files setWaitDialog(true); return getGithubService().login().then( () => {