Skip to content

Commit 465ffdc

Browse files
committed
add faq, bank acc no
1 parent 9125ea3 commit 465ffdc

File tree

4 files changed

+49
-2
lines changed

4 files changed

+49
-2
lines changed

src/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ a {
3636

3737
a:visited {
3838
@apply text-primary;
39-
39+
4040
font-weight: medium;
4141
}
4242

@@ -69,4 +69,4 @@ h2 {
6969

7070
h3 {
7171
@apply text-xl font-bold;
72-
}
72+
}

src/lib/copyBankAccNo.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export default () => {
2+
navigator.clipboard.writeText('1105415662');
3+
alert('Copied to clipboard!');
4+
};

src/routes/donate/+page.svelte

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<script>
2+
import copyBankAccountNumber from '$lib/copyBankAccNo';
3+
</script>
4+
15
<svelte:head>
26
<title>Donate Flow</title>
37
</svelte:head>
@@ -21,4 +25,12 @@
2125
<h4>Skrill:</h4>
2226
<span>batmend@gege.mn</span>
2327
</div>
28+
<div class="flex flex-col gap-0">
29+
<h4>Golomt Bank of Mongolia:</h4>
30+
<div>
31+
<button onclick={copyBankAccountNumber} class="appearance-none font-bold">
32+
1105415662
33+
</button> (Batmend Ganbaatar)
34+
</div>
35+
</div>
2436
</div>

src/routes/faq/+page.svelte

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script lang="ts">
22
import FlexDownloadButtons from '$lib/components/FlexDownloadButtons.svelte';
33
import DocHeader from '$lib/components/DocHeader.svelte';
4+
import copyBankAccountNumber from '$lib/copyBankAccNo';
45
</script>
56

67
<svelte:head>
@@ -13,6 +14,16 @@
1314
<a href="https://buymeacoffee.com/sadespresso">Buy me a coffee</a>
1415
</li>
1516
<li>Skrill: batmend@gege.mn</li>
17+
<li>
18+
Golomt Bank (of Mongolia): <button
19+
class="appearance-none font-bold"
20+
type="button"
21+
title="Click to copy my Golomt Bank of Mongolia account number"
22+
onclick={copyBankAccountNumber}
23+
>
24+
1105415662
25+
</button> (Batmend Ganbaatar)
26+
</li>
1627
</ul>
1728
{/snippet}
1829

@@ -42,6 +53,24 @@
4253
recoverable like JSON/ZIP backups.
4354
</p>
4455

56+
<DocHeader id="importing-erased-my-data-how-to-recover">
57+
Importing erased my data, how to recover?
58+
</DocHeader>
59+
60+
<p>
61+
Flow does a precaution backup before starting to import. You can find the backup in <b
62+
>Profile tab &gt; Backup &gt; Backup history</b
63+
>.
64+
</p>
65+
<br />
66+
<ul class="list-inside list-disc">
67+
<li>Please note that the precaution isn't guaranteed to succeed</li>
68+
<li>
69+
Also iOS clears the temporary storage periodically, so you may find the backup file deleted
70+
if too much time has passed.
71+
</li>
72+
</ul>
73+
4574
<DocHeader id="does-flow-have-online-sync">Does Flow have online sync?</DocHeader>
4675

4776
<p>
@@ -69,6 +98,8 @@
6998
<p>
7099
Yes. Flow can generate reports, summaries involving accounts with different currency.
71100
<br />
101+
Reports are always displayed in your primary currency.
102+
<br />
72103
<span class="opacity-60">Cross-currency transfers are not available at the moment.</span>
73104
</p>
74105

0 commit comments

Comments
 (0)