allow pinning on trackpad + respect allowJs
This commit is contained in:
parent
b8e6d7fb09
commit
08c70b4dcc
|
@ -7,7 +7,7 @@
|
||||||
rel="nofollow noreferrer noopener"
|
rel="nofollow noreferrer noopener"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
class="user-link"
|
class="user-link"
|
||||||
@click="handleClick()"
|
@click="handleClick"
|
||||||
@mouseover.prevent="show()"
|
@mouseover.prevent="show()"
|
||||||
@mouseenter.prevent="show()"
|
@mouseenter.prevent="show()"
|
||||||
@mouseleave.prevent="dismiss()"
|
@mouseleave.prevent="dismiss()"
|
||||||
|
@ -66,8 +66,13 @@
|
||||||
EventBus.$emit('imagepreview-toggle-stickyness', {url: this.url});
|
EventBus.$emit('imagepreview-toggle-stickyness', {url: this.url});
|
||||||
}
|
}
|
||||||
|
|
||||||
handleClick(): void {
|
handleClick(e: MouseEvent): void {
|
||||||
|
if (e.altKey) {
|
||||||
|
this.toggleStickyness();
|
||||||
|
e.preventDefault();
|
||||||
|
} else {
|
||||||
this.dismiss(true);
|
this.dismiss(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -560,6 +560,8 @@
|
||||||
|
|
||||||
|
|
||||||
async executeJavaScript(js: string | undefined, context: string = 'unknown', logDetails?: any): Promise<any> {
|
async executeJavaScript(js: string | undefined, context: string = 'unknown', logDetails?: any): Promise<any> {
|
||||||
|
if (!this.runJs) return;
|
||||||
|
|
||||||
const webview = this.getWebview();
|
const webview = this.getWebview();
|
||||||
|
|
||||||
if (!js) {
|
if (!js) {
|
||||||
|
|
Loading…
Reference in New Issue