From 65c82fd33938e578451d33674f0e205d894a29c2 Mon Sep 17 00:00:00 2001 From: DCoded <dicoded@email.com> Date: Fri, 19 Mar 2021 13:30:33 -0400 Subject: [PATCH] External links now open in new tab --- src/gui/options/options.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/options/options.js b/src/gui/options/options.js index 2b7d4233282..9381a0c2fb1 100644 --- a/src/gui/options/options.js +++ b/src/gui/options/options.js @@ -1056,7 +1056,7 @@ App.UI.artOptions = function() { .addValue("Enabled", true).on().addValue("Disabled", false).off(); } else if (V.imageChoice === 0) { options.addComment("You need to" + - " <a href='https://mega.nz/#!upoAlBaZ!EbZ5wCixxZxBhMN_ireJTXt0SIPOywO2JW9XzTIPhe0'>download the image" + + " <a href='https://mega.nz/#!upoAlBaZ!EbZ5wCixxZxBhMN_ireJTXt0SIPOywO2JW9XzTIPhe0' target='_blank'>download the image" + " pack</a> and put the 'renders' folder into the resources/ folder where this html file is."); options.addOption("Slave summary fetish images are", "seeMainFetishes") @@ -1068,7 +1068,7 @@ App.UI.artOptions = function() { .addValue("Enabled", true).on().addValue("Disabled", false).off(); } else if (V.imageChoice === 4) { options.addComment("You need to" + - " <a href='https://mega.nz/folder/ulIX2CAR#_g6wAcOLSCwIeGqrH7oXkA'>download the WebGL art assets</a>" + + " <a href='https://mega.nz/folder/ulIX2CAR#_g6wAcOLSCwIeGqrH7oXkA' target='_blank'>download the WebGL art assets</a>" + " and put the 'webgl' folder into the resources/ folder where this html file is. Then refresh the page."); options.addOption("Supersampling (SSAA)", "setSuperSampling") -- GitLab