Skip to content

Commit

Permalink
update App.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
codenoid committed Jun 4, 2023
1 parent 75c54b9 commit 817bf74
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions frontend/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {
} from 'svelte';
import logo from './assets/images/logo-universal.png'
import {
Greet,
Proceed
Proceed,
OpenBrowser
} from '../wailsjs/go/main/App.js'
import {
TextBox,
Expand All @@ -25,10 +25,6 @@ import "carbon-components-svelte/css/g80.css";
let resultText = "Please enter your name below 👇"
let name
function greet() {
Greet(name).then(result => resultText = result)
}
let canvas;
let context;
let img = new Image();
Expand Down Expand Up @@ -302,7 +298,12 @@ function reset() {
<br><br>
<Button variant="standard" style="width:100%;" on:click={reset}>
Reset
</Button>
</Button>
<br><br>
<div style="text-align: center;">
Rubi Jihantoro<br>
<Button variant="hyperlink" on:click={() => {OpenBrowser('https://github.com/codenoid/batch-image-generator/releases')}}>Check For Update</Button>
</div>
</div>
<div class="six columns">
<label for="">Create New Placeholder</label>
Expand Down

0 comments on commit 817bf74

Please sign in to comment.