response copy Script Changes

This commit is contained in:
Edison Augusthy
2019-08-26 11:48:36 +05:30
committed by GitHub
parent 3cd8d94ceb
commit 6bed41b8c1

View File

@@ -372,6 +372,11 @@
},
removeRequestBodyParam(index) {
this.bodyParams.splice(index, 1)
},
copyResponse() {
var copyText = document.getElementById("response-details");
copyText.select();
document.execCommand("copy");
}
}
}