From f519ab9f18441557dd10d8d65ae7ce87db7cd73e Mon Sep 17 00:00:00 2001 From: Monish Deb Date: Fri, 15 Nov 2019 19:48:14 +0530 Subject: [PATCH] core#1398: Option to open navigation item in new window (if present) --- js/crm.menubar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/crm.menubar.js b/js/crm.menubar.js index 152a6e376e..9fa49f63d6 100644 --- a/js/crm.menubar.js +++ b/js/crm.menubar.js @@ -471,7 +471,7 @@ } function attr(el, item) { - var ret = [], attr = _.cloneDeep(item.attr || {}), a = ['rel', 'accesskey']; + var ret = [], attr = _.cloneDeep(item.attr || {}), a = ['rel', 'accesskey', 'target']; if (el === 'a') { attr = _.pick(attr, a); attr.href = item.url || "#"; -- 2.25.1