mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
10 lines
293 B
JavaScript
10 lines
293 B
JavaScript
import { Controller } from "stimulus";
|
|
export default class extends Controller {
|
|
static targets = ["panel"];
|
|
|
|
selectPaymentMethod(event) {
|
|
this.panelTarget.innerHTML = `<span>${event.target.dataset.paymentmethodDescription}</span>`;
|
|
this.panelTarget.style.display = "block";
|
|
}
|
|
}
|