mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
import { Controller } from "stimulus";
|
|
|
|
export default class extends Controller {
|
|
connect() {
|
|
this.element.querySelectorAll("a").forEach(function (link) {
|
|
link.target = "_blank";
|
|
});
|
|
}
|
|
}
|