Files
fizzy/app/javascript/controllers/bridge/share_controller.js
T
2026-02-20 17:18:53 +01:00

15 lines
354 B
JavaScript

import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
export default class extends BridgeComponent {
static component = "share"
share() {
const description = this.bridgeElement.bridgeAttribute("share-description")
this.send("share", {
title: document.title,
url: window.location.href,
description
})
}
}