From c570b3cecfbea2faf994e2bb4e212bfc7629d7da Mon Sep 17 00:00:00 2001 From: Christian Ruhmer Date: Tue, 9 Oct 2018 12:46:50 +0200 Subject: [PATCH 1/2] Update Version Number --- gc_little_helper_II.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc_little_helper_II.user.js b/gc_little_helper_II.user.js index 1b18d068a..a82f6969d 100644 --- a/gc_little_helper_II.user.js +++ b/gc_little_helper_II.user.js @@ -2,7 +2,7 @@ // @name GC little helper II // @namespace http://www.amshove.net //--> $$000 -// @version 0.9.12 +// @version 0.9.13 //<-- $$000 // @include http*://www.geocaching.com/* // @include http*://maps.google.tld/* From e72c2a12262c383e3470390b5d1c27a3e14071ff Mon Sep 17 00:00:00 2001 From: Christian Ruhmer Date: Tue, 9 Oct 2018 15:33:39 +0200 Subject: [PATCH 2/2] Small Change in Styling of the PQ-Splitter instruction --- gc_little_helper_II.user.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gc_little_helper_II.user.js b/gc_little_helper_II.user.js index a82f6969d..4ea27c073 100644 --- a/gc_little_helper_II.user.js +++ b/gc_little_helper_II.user.js @@ -803,8 +803,14 @@ var mainPGC = function() { td.appendChild(heading_instructions); td.appendChild(document.createTextNode("This function will only work, if you don't set any other filter except country or region!")); td.appendChild(document.createElement("br")); - td.appendChild(document.createTextNode("If you click the \"Create PQ(s)\" Button GClh will open as many Pop-ups as PQs should be created. Please wait until all Pop-ups are loaded. They will close themselves after the PQs are created. Please make sure you do not have a Pop-up-Blocker enabled. Otherwise this function will not work. All PQs will get the Name that you enter in the text field and an ongoing number.")); - + td.appendChild(document.createTextNode("If you click the \"Create PQ(s)\" Button GClh will open as many Pop-ups as PQs should be created. Please wait until all Pop-ups are loaded. The number of simultaneously loaded Popups is limited to 5. We will display a message if all PQs are created. The Popups will close themselves after the PQs are created. ")); + + var span = document.createElement('span'); + span.innerHTML = 'Please make sure you do not have a Pop-up-Blocker enabled. Otherwise this function will not work as expected. '; + span.style.fontWeight = 'bold'; + td.appendChild(span); + + td.appendChild(document.createTextNode("All PQs will get the Name that you enter in the text field and an ongoing number.")); tr.appendChild(td); tfoot.appendChild(tr); $(this).append(tfoot);