mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
import { Controller } from "@hotwired/stimulus"
|
|
|
|
// Connects to data-controller="analyze"
|
|
export default class extends Controller {
|
|
connect() { }
|
|
refresh(event) {
|
|
window.location = event.target.value
|
|
}
|
|
}
|