diff options
| author | rsudev <rasch@munin-soft.de> | 2013-06-14 03:37:37 -0700 |
|---|---|---|
| committer | rsudev <rasch@munin-soft.de> | 2013-06-14 03:37:37 -0700 |
| commit | 285e3404543b3b99b495d27b36cf9c2b758f6416 (patch) | |
| tree | 4c149f25d4111b7dc6c31faae140ba546b841778 | |
| parent | 3294e2f691d2ff4a43c4245bdf059693657cdc63 (diff) | |
| parent | b9338748e7093eb5be950127c0a40a95c91e13d7 (diff) | |
| download | cgeo-285e3404543b3b99b495d27b36cf9c2b758f6416.zip cgeo-285e3404543b3b99b495d27b36cf9c2b758f6416.tar.gz cgeo-285e3404543b3b99b495d27b36cf9c2b758f6416.tar.bz2 | |
Merge pull request #2887 from Lineflyer/master
Workaround for #2851
| -rw-r--r-- | send2cgeo/send2cgeo.user.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/send2cgeo/send2cgeo.user.js b/send2cgeo/send2cgeo.user.js index b309b58..bd20f3a 100644 --- a/send2cgeo/send2cgeo.user.js +++ b/send2cgeo/send2cgeo.user.js @@ -4,9 +4,10 @@ // @description Add button "Send to c:geo" to geocaching.com // @include http://www.geocaching.com/seek/cache_details* // @include http://www.geocaching.com/map/* +// @include http://www.geocaching.com/geocache/* // @icon http://send2.cgeo.org/content/images/logo.png // @updateURL http://send2.cgeo.org/send2cgeo.user.js -// @version 0.26 +// @version 0.27 // ==/UserScript== // Inserts javascript that will be called by the s2cgeo button. The closure @@ -81,6 +82,7 @@ s.textContent = '(' + function() { + '/>'; $('#Download p:last').append(html); + $('#Download dd:last').append(html); } } + ')();'; |
