-
I've noticed this behavior from the previous CoreUI4 version as well. See the following example: <ul class="nav-group-items compact">
<li class="nav-item"><a class="nav-link" href="/some/page/file1.php"><span class="nav-icon"><span class="nav-icon-bullet"></span></span> Some Link 1</a></li>
<li class="nav-item"><a class="nav-link" href="/some/page/file1.php?some=value"><span class="nav-icon"><span class="nav-icon-bullet"></span></span> Some Link 2</a></li>
<li class="nav-item"><a class="nav-link" href="http://localhost/some/page/file2.php?some=value"><span class="nav-icon"><span class="nav-icon-bullet"></span></span> Some Link 3</a></li>
</ul> From anywhere on the site, when clicking on Despite the final URL and link having exactly the same values. Can someone explane me why this happens, and how to "fix" it? Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Just in case someone else is trying to figure this out. In the file
Cheers. |
Beta Was this translation helpful? Give feedback.
Just in case someone else is trying to figure this out.
In the file
coreui.bundle.min.js
find:&&(e=e.split("?")[0])
And comment it (or delete):
/*&&(e=e.split("?")[0])*/
Cheers.