Merge pull request #52 from ButterCheezii/preview-pin

Allow pinning links on trackpad
This commit is contained in:
mrstallion 2021-12-20 16:35:25 -06:00 committed by GitHub
commit b4e58f6be7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 3 deletions

View File

@ -7,7 +7,7 @@
rel="nofollow noreferrer noopener"
target="_blank"
class="user-link"
@click="handleClick()"
@click="handleClick"
@mouseover.prevent="show()"
@mouseenter.prevent="show()"
@mouseleave.prevent="dismiss()"
@ -66,8 +66,13 @@
EventBus.$emit('imagepreview-toggle-stickyness', {url: this.url});
}
handleClick(): void {
this.dismiss(true);
handleClick(e: MouseEvent): void {
if (e.altKey) {
this.toggleStickyness();
e.preventDefault();
} else {
this.dismiss(true);
}
}
}
</script>

View File

@ -560,6 +560,8 @@
async executeJavaScript(js: string | undefined, context: string = 'unknown', logDetails?: any): Promise<any> {
if (!this.runJs) return;
const webview = this.getWebview();
if (!js) {