From cccceafa1d1ba1a5dd3c33869e0aa7fbbd676c19 Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Thu, 11 Feb 2016 10:46:38 -0800 Subject: [PATCH] Implement 'I wish this page...' --- js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/script.js b/js/script.js index c5f59fc4de..8826efc3c3 100755 --- a/js/script.js +++ b/js/script.js @@ -1672,7 +1672,7 @@ var kub = (function () { } function submitWish(textfield) { - alert('You typed: ' + textfield.value); + window.location.replace("https://github.com/kubernetes/kubernetes.github.io/issues/new?title=I%20wish%20this%20page%20" + textfield.value +"&body=I%20wish%20this%20page%20" + textfield.value + ". URL: " + window.location.href); textfield.value = ''; textfield.blur(); }