mirror of
https://github.com/czhu12/canine.git
synced 2025-12-31 00:10:14 -06:00
11 lines
262 B
JavaScript
11 lines
262 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;
|
|
}
|
|
}
|