mirror of
https://github.com/czhu12/canine.git
synced 2025-12-30 07:39:43 -06:00
12 lines
307 B
JavaScript
12 lines
307 B
JavaScript
import { Controller } from "@hotwired/stimulus"
|
|
|
|
export default class extends Controller {
|
|
static targets = ["container"]
|
|
|
|
connect() {
|
|
// Scroll to the bottom of the container
|
|
this.containerTarget.scrollTop = this.containerTarget.scrollHeight;
|
|
console.log("Logs controller connected")
|
|
}
|
|
}
|