Skip to content

Commit

Permalink
Update AppLink to enable native mouse navigation (#7498)
Browse files Browse the repository at this point in the history
* Update AppLink to enable native mouse navigation

Add a `href` attribute to enable native mouse navigation (middle click, ctrl+click, etc.)

* Update changelog
  • Loading branch information
sharkykh authored and p0psicles committed Dec 15, 2019
1 parent feb1e21 commit 9ef093b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#### Improvements
- Add `uniqueid` to Kodi 12+ show metadata ([#7483](https://github.com/pymedusa/Medusa/pull/7483))
- Update AppLink to enable native mouse navigation ([#7498](https://github.com/pymedusa/Medusa/pull/7498))

#### Fixes
- Fix Emby notifier error on Python 3 ([#7497](https://github.com/pymedusa/Medusa/pull/7497))
Expand Down
4 changes: 3 additions & 1 deletion themes-default/slim/src/components/helpers/app-link.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ export default {
if (window.loadMainApp) {
return {
is: 'router-link',
to: matchingVueRoute.fullPath
to: matchingVueRoute.fullPath,
// Add a `href` attribute to enable native mouse navigation (middle click, ctrl+click, etc.)
href: new URL(matchingVueRoute.fullPath, base).href
};
}
}
Expand Down
4 changes: 2 additions & 2 deletions themes/dark/assets/js/medusa-runtime.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9ef093b

Please sign in to comment.