diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-10 10:54:53 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-10 10:54:53 +0100 |
commit | 41aae971a9a0e4e2cb53a64ba56ae4fe5b0a33d4 (patch) | |
tree | 8121cf73bebab7e52ef251c5cbb79dc8c22263d7 /apps | |
parent | 308c99f1fd7ee82348232e93d1a6bae32ad0afa7 (diff) | |
parent | ecbe4aea31feec3907e92f28d7e50364d7af2894 (diff) | |
download | nextcloud-server-41aae971a9a0e4e2cb53a64ba56ae4fe5b0a33d4.tar.gz nextcloud-server-41aae971a9a0e4e2cb53a64ba56ae4fe5b0a33d4.zip |
Merge pull request #23050 from owncloud/href-target-blank
make sure links open in new tabs
Diffstat (limited to 'apps')
-rw-r--r-- | apps/updatenotification/js/notification.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/js/notification.js b/apps/updatenotification/js/notification.js index 9d22bcb2309..810b9c168af 100644 --- a/apps/updatenotification/js/notification.js +++ b/apps/updatenotification/js/notification.js @@ -18,7 +18,7 @@ $(document).ready(function(){ version = oc_updateState.updateVersion, docLink = oc_updateState.updateLink, text = t('core', '{version} is available. Get more information on how to update.', {version: version}), - element = $('<a>').attr('href', docLink).text(text); + element = $('<a>').attr('href', docLink).attr('target','_blank').text(text); OC.Notification.showTemporary( element, |