diff options
author | Go MAEDA <maeda@farend.jp> | 2022-07-22 01:33:38 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2022-07-22 01:33:38 +0000 |
commit | 3164895f6995d4255e9ed4c64c25ac07fdc5dd8f (patch) | |
tree | 47c1bb68fab9a0f0241c5ec1c7cccf734bd9409e /lib | |
parent | 04e5ae033bf78d7cfd55dd1b905df79c2a913f83 (diff) | |
download | redmine-3164895f6995d4255e9ed4c64c25ac07fdc5dd8f.tar.gz redmine-3164895f6995d4255e9ed4c64c25ac07fdc5dd8f.zip |
Open Help in a separate tab (#1069).
Contributed by Vijay Kiran.
git-svn-id: https://svn.redmine.org/redmine/trunk@21737 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/preparation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/preparation.rb b/lib/redmine/preparation.rb index 79f4f82ee..d2249b03e 100644 --- a/lib/redmine/preparation.rb +++ b/lib/redmine/preparation.rb @@ -169,7 +169,7 @@ module Redmine :caption => :label_project_plural menu.push :administration, {:controller => 'admin', :action => 'index'}, :if => Proc.new {User.current.admin?}, :last => true - menu.push :help, Info.help_url, :last => true + menu.push :help, Info.help_url, :html => {:target => '_blank', :rel => 'noopener'}, :last => true end MenuManager.map :account_menu do |menu| |