Skip to content

Commit

Permalink
test something with lighthouse
Browse files Browse the repository at this point in the history
  • Loading branch information
romgere committed Oct 13, 2023
1 parent d9f109c commit 32df15c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/controllers/app/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ export default class GeneratorController extends Controller {
});

get meshGenerating() {
return this.mesh.isLoading;
return false; //this.mesh.isLoading;
}

get exportDisabled() {
return !this.mesh.value;
return true; // !this.mesh.value;
}

@tracked isFontLoading = true;
Expand Down
4 changes: 2 additions & 2 deletions app/templates/app/generator.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@


<calcite-panel>
<ThreePreview @mesh={{this.mesh.value}} @parentSize={{true}} as |preview|>
{{!-- <ThreePreview @mesh={{this.mesh.value}} @parentSize={{true}} as |preview|>
<div id="three-preview-container">
<preview.renderer />
</div>
<div slot='footer'>
<preview.size />
</div>
</ThreePreview>
</ThreePreview> --}}

</calcite-panel>

Expand Down

0 comments on commit 32df15c

Please sign in to comment.