mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
19 lines
409 B
JavaScript
19 lines
409 B
JavaScript
import "controllers";
|
|
import "channels";
|
|
import "@hotwired/turbo";
|
|
import "../js/mrujs";
|
|
import "../js/matomo";
|
|
import "../js/moment";
|
|
|
|
import bigDecimal from "js-big-decimal";
|
|
window.bigDecimal = bigDecimal;
|
|
|
|
import debounced from "debounced";
|
|
debounced.initialize({ input: { wait: 300 } });
|
|
|
|
import Trix from "trix";
|
|
|
|
document.addEventListener("trix-file-accept", (event) => {
|
|
event.preventDefault();
|
|
});
|