Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions src/HelpPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,23 @@ function HelpPage() {
<section>
<h2>Opening local files</h2>
<p>
myHDF5 supports opening local HDF5 files of any size, either by
selecting them via a file picker from the{' '}
myHDF5 supports opening local HDF5 files of <strong>any size</strong>,
either by selecting them via a file picker from the{' '}
<Link to="/">
<em>Open HDF5</em>
</Link>{' '}
page, or by dragging and dropping them anywhere on the interface at
any time. You can even select/drop multiple files at once.
any time. You can even select/drop multiple files at once. Note that
your files are <strong>never uploaded</strong> to a remote server;
everything happens locally in your browser thanks to{' '}
<a
href="https://github.com/usnistgov/h5wasm"
target="_blank"
rel="noreferrer"
>
h5wasm
</a>
.
</p>
</section>
<section id="remote">
Expand Down
1 change: 1 addition & 0 deletions src/services/LocalService.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@

.hint {
composes: hint from '../utils.module.css';
max-width: 40em;
}
13 changes: 12 additions & 1 deletion src/services/LocalService.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,18 @@ function LocalService() {
>
Select HDF5 files
</button>
<p className={styles.hint}>or drop files anywhere at any time</p>
<p className={styles.hint}>
... or drop files anywhere at any time. Your files won't be uploaded to
a remote server; everything happens locally in your browser thanks to{' '}
<a
href="https://github.com/usnistgov/h5wasm"
target="_blank"
rel="noreferrer"
>
h5wasm
</a>
.
</p>
</Service>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/services/RemoteService.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@

.hint {
composes: hint from '../utils.module.css';
max-width: 45em;
max-width: 40em;
}