You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am expecting to be redirected to https://atlassianps.org/#people, however the link is not working on chrome and edge browsers
My suggestion
$('a[href*="#"]:not([href="#"]), a.inpage-navigation[href*="#"]').on('click', function (event) { event.preventDefault(); smoothScroll($(this.hash)); });
change to $('a[href^="#"]:not([href="#"]), a.inpage-navigation[href*="#"]').on('click', function (event) { event.preventDefault(); smoothScroll($(this.hash)); });
in the theme.js file, as I bet smooth scroll broke such URLs
The text was updated successfully, but these errors were encountered:
Expectation
Go to webpage https://atlassianps.org/docs/Contributing/
and click on Homepage link under thank you quoted message
Status Quo
I am expecting to be redirected to https://atlassianps.org/#people, however the link is not working on chrome and edge browsers
My suggestion
$('a[href*="#"]:not([href="#"]), a.inpage-navigation[href*="#"]').on('click', function (event) { event.preventDefault(); smoothScroll($(this.hash)); });
change to
$('a[href^="#"]:not([href="#"]), a.inpage-navigation[href*="#"]').on('click', function (event) { event.preventDefault(); smoothScroll($(this.hash)); });
in the theme.js file, as I bet smooth scroll broke such URLs
The text was updated successfully, but these errors were encountered: