Skip to content

Instantly share code, notes, and snippets.

View SilentKernel's full-sized avatar

Ludovic Frank SilentKernel

View GitHub Profile
@SilentKernel
SilentKernel / checkbox-toggler_controller.js
Created January 16, 2023 12:47
Un controller Stimulus
import {Controller} from '@hotwired/stimulus'
/* stimulusFetch: 'lazy' */
export default class extends Controller {
static values = {
class: String,
}
connect() {
this.checkBoxes = document.getElementsByClassName(this.classValue);