diff --git a/pages/index.vue b/pages/index.vue
index 2ed24366a..b43df6625 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -25,7 +25,8 @@
+ Send Again
+
@@ -34,7 +35,6 @@
Content Type
-
Raw input {{ rawInput ? "enabled" : "disabled" }}
@@ -91,7 +91,10 @@
-
+
+
+
+
@@ -102,7 +105,6 @@
-
@@ -540,6 +542,14 @@
return false;
}
},
+ copyRequest() {
+ var dummy = document.createElement('input');
+ document.body.appendChild(dummy);
+ dummy.value = window.location.href;
+ dummy.select();
+ document.execCommand('copy');
+ document.body.removeChild(dummy);
+ },
copyResponse() {
var copyText = document.getElementById("response-details");
copyText.select();