Intercept clicks and Enter key presses on links (<a> tags) and use Aberdeen routing
instead of browser navigation for local paths (paths without a protocol or host).
This allows you to use regular HTML anchor tags for navigation without needing to
manually attach click handlers to each link.
Returns void
Example
// In your root component: route.interceptLinks();
// Now you can use regular anchor tags: $('a text=About href=/corporate/about');
Intercept clicks and Enter key presses on links (
<a>tags) and use Aberdeen routing instead of browser navigation for local paths (paths without a protocol or host).This allows you to use regular HTML anchor tags for navigation without needing to manually attach click handlers to each link.