Files
once-campfire/app/javascript/controllers/turbo_streaming_controller.js
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

12 lines
372 B
JavaScript

import { Controller } from "@hotwired/stimulus"
// Unsubscribe a container from turbo streaming actions (by removing its id) can address timing jank
// when turbo streaming updates race against a full controller response.
export default class extends Controller {
static targets = [ "container" ]
unsubscribe() {
this.containerTarget.removeAttribute("id")
}
}