mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-26 05:55:15 +00:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
import consumer from './consumer'
|
|
|
|
consumer.subscriptions.create("SessionChannel", {
|
|
received(data) {
|
|
if (!data.selector) return;
|
|
|
|
document.querySelector(data.selector).innerHTML = data.html;
|
|
}
|
|
});
|