Merge pull request #17101 from nextcloud/backport/stable17/17086

[stable17] Fix opening apps with Ctrl+click
This commit is contained in:
Roeland Jago Douma 2019-09-15 10:20:33 +02:00 committed by GitHub
commit 2883e7b36b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -77,10 +77,6 @@ export const setUp = () => {
$app = $app.closest('a')
}
// trigger redirect
// needed for ie, but also works for every browser
window.location = $app.href
if (event.which === 1 && !event.ctrlKey && !event.metaKey && $app.parent('#more-apps').length === 0) {
$app.find('svg').remove()
$app.find('div').remove() // prevent odd double-clicks
@ -89,6 +85,9 @@ export const setUp = () => {
? 'icon-loading-small'
: 'icon-loading-small-dark'
))
// trigger redirect
// needed for ie, but also works for every browser
window.location = $app.attr('href')
} else {
// Close navigation when opening app in
// a new tab