You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2019/02/12 23:05:51 UTC

[groovy-website] 03/07: Fix 404 on "Improve this doc" button click (closes #4)

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git

commit 787ec5d7746927c463423d4221bdf8fe9ae00185
Author: energister <en...@users.noreply.github.com>
AuthorDate: Mon Feb 4 22:10:19 2019 +0300

    Fix 404 on "Improve this doc" button click (closes #4)
---
 site/src/site/includes/contribute-button.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/site/src/site/includes/contribute-button.groovy b/site/src/site/includes/contribute-button.groovy
index 41729e8..0cb4186 100644
--- a/site/src/site/includes/contribute-button.groovy
+++ b/site/src/site/includes/contribute-button.groovy
@@ -1,7 +1,7 @@
 div(id: 'contribute-btn') {
     button(type: 'button', class: 'btn btn-default',
-            onclick: "window.location.href=\"https://github.com/groovy/groovy-website/tree/master/site/src/site/pages/${currentPage}.groovy\"") {
+            onclick: "window.location.href=\"https://github.com/apache/groovy-website/tree/master/site/src/site/pages/${currentPage}.groovy\"") {
         i(class: 'fa fa-pencil-square-o') {}
         yield ' Improve this doc'
     }
-}
\ No newline at end of file
+}