Files
canine/app/javascript/controllers/logs_controller.js
2024-10-12 23:23:31 -07:00

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")
}
}