From cc45e7d03480eaa1e4491840169ae24a538173d2 Mon Sep 17 00:00:00 2001 From: hobbyquaker Date: Sat, 21 Jul 2018 22:53:40 +0200 Subject: [PATCH] window.location.search hand through for addon configuration pages --- addon/www/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/www/index.html b/addon/www/index.html index 0b438e0..a564c3b 100644 --- a/addon/www/index.html +++ b/addon/www/index.html @@ -593,7 +593,7 @@ along with this program. If not, see . .attr('data-addon-config-url', addon.config_url) .append($(''), i18next.t('open_config')); bconfig.click(function() { - var win = window.open(this.getAttribute('data-addon-config-url'), '_blank'); + var win = window.open(this.getAttribute('data-addon-config-url') + window.location.search, '_blank'); win.focus(); });