Part-DB.Part-DB-server/assets/controllers/turbo/title_controller.js

12 lines
343 B
JavaScript
Raw Normal View History

import { Controller } from '@hotwired/stimulus';
export default class extends Controller {
connect() {
//If we encounter an element with this, then change the title of our document according to data-title
this.changeTitle(this.element.dataset.title);
}
changeTitle(title) {
document.title = title;
}
}