copy message & infinite scroll start #17

Merged
anomalist merged 4 commits from hack-copy into master 2023-05-17 06:32:13 +00:00
Showing only changes of commit 44ed39b5c1 - Show all commits

View File

@@ -151,8 +151,12 @@
<code class="truncate">{{ derivationPath }}</code>
<button
@click="
copyText($event, derivationPath, 'derpath');
derpath = !derpath;
derpath = true;
copy(derivationPath).then(() => {
st(function () {
derpath = !derpath;
});
});
"
class="ml-2"
>
@@ -332,7 +336,7 @@ export default class AccountViewView extends Vue {
}
st(f) {
setTimeout(f, 10000);
setTimeout(f, 2000);
}
copyText = (e: MouseEvent, inputText: string, loc: string) => {
@@ -342,8 +346,6 @@ export default class AccountViewView extends Vue {
if (loc == "did") {
this.showCopyMessage();
console.log(this);
} else if (loc == "derpath") {
this.derpath = true;
} else if (loc == "base64") {
this.base64 = true;
} else if (loc == "pubhex") {