From d53373635d742d7418399ca1a28ff83480b376d6 Mon Sep 17 00:00:00 2001 From: Eric Mc Sween Date: Tue, 26 Nov 2019 08:12:30 -0500 Subject: [PATCH] Merge pull request #2405 from overleaf/cmg-target-blank Add target _blank to blog post modal link GitOrigin-RevId: d1407b628eba6cf4f95540371db7c4e108a16d3c --- services/web/app/views/project/list/modals.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/app/views/project/list/modals.pug b/services/web/app/views/project/list/modals.pug index add65bf012..f6ea95e9ab 100644 --- a/services/web/app/views/project/list/modals.pug +++ b/services/web/app/views/project/list/modals.pug @@ -207,10 +207,10 @@ script(type='text/ng-template', id='archiveTrashLeaveOrDeleteProjectsModalTempla strong {{project.name}} .project-action-alert.alert.alert-info(ng-if="action === 'archive'") .project-action-alert-msg #{translate("archived_projects_info_note")} - a(href="https://www.overleaf.com/blog/new-feature-using-archive-and-trash-to-keep-your-projects-organized").project-action-alert-btn.btn.btn-info.pull-right #{translate("find_out_more")} + a(href="https://www.overleaf.com/blog/new-feature-using-archive-and-trash-to-keep-your-projects-organized" target="_blank").project-action-alert-btn.btn.btn-info.pull-right #{translate("find_out_more")} .project-action-alert.alert.alert-info(ng-if="action === 'trash'") .project-action-alert-msg #{translate("trashed_projects_info_note")} - a(href="https://www.overleaf.com/blog/new-feature-using-archive-and-trash-to-keep-your-projects-organized").project-action-alert-btn.btn.btn-info.pull-right #{translate("find_out_more")} + a(href="https://www.overleaf.com/blog/new-feature-using-archive-and-trash-to-keep-your-projects-organized" target="_blank").project-action-alert-btn.btn.btn-info.pull-right #{translate("find_out_more")} .project-action-alert.alert.alert-warning(ng-if="action === 'leave' || action === 'delete'") i.fa.fa-fw.fa-exclamation-triangle .project-action-alert-msg #{translate("this_action_cannot_be_undone")}