mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-12-22 11:03:48 +01:00
cleanup
This commit is contained in:
parent
9101a6325a
commit
07c5d0635c
9
index.js
9
index.js
@ -47,10 +47,10 @@ window.downloadSketch = () => {
|
||||
});
|
||||
};
|
||||
|
||||
window.addEventListener('keydown',(event) => {
|
||||
window.addEventListener('keydown', (event) => {
|
||||
// downloadSketch
|
||||
const key = keycode(event);
|
||||
if (key === 's') downloadSketch();
|
||||
if (key === 's') window.downloadSketch();
|
||||
console.log(event.shiftKey, key);
|
||||
});
|
||||
|
||||
@ -91,10 +91,7 @@ async function init() {
|
||||
|
||||
render((
|
||||
<Provider store={store}>
|
||||
<span>
|
||||
<App />
|
||||
<div onTouchTap={downloadSketch} style={{ position: 'absolute', right: 0, top: 0, backgroundImage: `url(${btnExportURL})`, width: "65px", height: "78px", backgroundSize: "65px 78px", cursor: "pointer" }}></div>
|
||||
</span>
|
||||
<App />
|
||||
</Provider>
|
||||
), document.getElementById('app'));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user