fixed some bugs

master
A1Gard 2 weeks ago
parent 6c45d9a8e7
commit 70132d9ed6

@ -605,6 +605,9 @@ class ClientController extends Controller
break;
}
}
if (count( explode('@', $r)) == 1){
return abort(404);
}
$method = explode('@', $r)[1];
$segments = $request->segments();
$routes = explode('/', $n);

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

@ -56,6 +56,8 @@ document.addEventListener('DOMContentLoaded', () => {
});
}
try {
// Apply parallax on scroll and resize
window.addEventListener('scroll', applyParallax);
window.addEventListener('resize', applyParallax);
@ -65,4 +67,7 @@ document.addEventListener('DOMContentLoaded', () => {
// Reapply parallax when tiny-slider changes slides
parallaxSlider.events.on('transitionEnd', applyParallax);
} catch {
}
});

Loading…
Cancel
Save