replace tabs with space

This commit is contained in:
casperlamboo 2016-04-21 15:52:23 +02:00
parent 2186fe2428
commit 1f8bc2906e
14 changed files with 351 additions and 351 deletions

View File

@ -14,12 +14,12 @@ doodle3DManager.addEventListener('boxappeared', ({box}) => {
});
box.addEventListener('update', (event) => {
let status = event.state;
const status = event.state;
});
box.setAutoUpdate(true);
box.setAutoUpdate(true, 1000);
});
doodle3DManager.setAutoUpdate(true);
doodle3DManager.setAutoUpdate(true, 1000);
```