Skip to content

Commit

Permalink
Update login-screen.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
lguzzon committed Sep 14, 2020
1 parent 5e52b43 commit d9569b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/svelte/components/login-screen.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@
function onOpen(instance) {
dispatch('loginscreenOpen', [instance]);
if (typeof $$props.onLoginscreenOpen === 'function') $$props.onLoginscreenOpen(instance);
if (typeof $$props.onLoginScreenOpen === 'function') $$props.onLoginScreenOpen(instance);
}
function onOpened(instance) {
dispatch('loginscreenOpened', [instance]);
if (typeof $$props.onLoginscreenOpened === 'function') $$props.onLoginscreenOpened(instance);
if (typeof $$props.onLoginScreenOpened === 'function') $$props.onLoginScreenOpened(instance);
}
function onClose(instance) {
dispatch('loginscreenClose', [instance]);
if (typeof $$props.onLoginscreenClose === 'function') $$props.onLoginscreenClose(instance);
if (typeof $$props.onLoginScreenClose === 'function') $$props.onLoginScreenClose(instance);
}
function onClosed(instance) {
dispatch('loginscreenClosed', [instance]);
if (typeof $$props.onLoginscreenClosed === 'function') $$props.onLoginscreenClosed(instance);
if (typeof $$props.onLoginScreenClosed === 'function') $$props.onLoginScreenClosed(instance);
}
let initialWatched = false;
Expand Down

0 comments on commit d9569b8

Please sign in to comment.