Skip to content

Commit

Permalink
[Fix] Export App Icons Project Folder
Browse files Browse the repository at this point in the history
  • Loading branch information
thize committed May 24, 2020
1 parent 1c2419b commit 9abf6bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"panelId": "main_panel"
}
],
"version": "3.0.0"
"version": "3.0.1"
}
14 changes: 7 additions & 7 deletions src/ui/main_panel_ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ function show(event) {
panel.innerHTML =
build_css() +
outputUi() + '<hr>' +
projectFolderUi() + '<hr>' +
exportButtonsUi() + '<hr>' +
exportToUi() + '<hr>' +
// projectFolderUi() + '<hr>' +
// exportedCodePath() + '<hr>' +
widgetsPrefixUi() + '<hr>' +
precisionRowUi() + '<hr>' +
Expand Down Expand Up @@ -70,12 +70,12 @@ function buildTaps() {
let exportAllRadio = document.querySelector('input[name="exportAllRadio"]:checked');
onTapExport(exportAllRadio.value);
});
// let changeProjectFolderButton = document.getElementById('changeProjectFolderButton');
// changeProjectFolderButton.onclick = async function () {
// await changeProjectFolder();
// const projectFolderInput = document.getElementById('projectFolderInput');
// projectFolderInput.value = getFolderPath();
// };
let changeProjectFolderButton = document.getElementById('changeProjectFolderButton');
changeProjectFolderButton.onclick = async function () {
await changeProjectFolder();
const projectFolderInput = document.getElementById('projectFolderInput');
projectFolderInput.value = getFolderPath();
};
let iosIconButton = document.getElementById('iosIconButton');
iosIconButton.onclick = function () {
exportAppIcon('ios');
Expand Down

0 comments on commit 9abf6bc

Please sign in to comment.