Files
TijdVoorDeTest/assets/controllers/elimination_controller.js
T
2026-03-13 23:13:26 +01:00

15 lines
401 B
JavaScript

import {Controller} from '@hotwired/stimulus';
export default class extends Controller {
next() {
const currentUrl = new URL(window.location.href);
const pathParts = currentUrl.pathname.split('/');
// Remove the last segment
pathParts.pop();
// Update the pathname
currentUrl.pathname = pathParts.join('/');
// Navigate
window.location.href = currentUrl.href;
}
}