Custom admin panels in v25.2

In previous versions of Sugar the recommended way of putting the clickable admin link in was to use the below which has worked for many years.

'javascript:void(parent.SUGAR.App.router.navigate("Opportunities", {trigger: true}));'

I have noticed in v25.2.0 that this is no longer the case, that works if you use the Search Admin Settings section but not if you scroll down the page and click the link directly.

It appears that the documentation still states to use the aforementioned way as per https://support.sugarcrm.com/documentation/sugar_developer/sugar_developer_guide_25.2/user_interface/administration_links/ however when you look at how the links are defined in a v25.2.0 system they are just set as `'#Opportunities'`. Is this going to be the new format and preferred setup going forward?

I noticed the below also works so wasn't sure if there was a problem with that so just wanted to get the official answer before we go about updating our packages.

'App.router.navigate("Opportunities", {trigger: true}));'