Merge pull request #819 from hargata/Hargata/804
make it easier to test API.
This commit is contained in:
@@ -657,7 +657,11 @@
|
|||||||
}
|
}
|
||||||
<script>
|
<script>
|
||||||
$('.copyable').on('click', function (e) {
|
$('.copyable').on('click', function (e) {
|
||||||
copyToClipboard(e.currentTarget);
|
if (e.ctrlKey || e.metaKey){
|
||||||
|
window.location = e.currentTarget.textContent.trim();
|
||||||
|
} else {
|
||||||
|
copyToClipboard(e.currentTarget);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
function showExtraFieldsInfo(){
|
function showExtraFieldsInfo(){
|
||||||
Swal.fire({
|
Swal.fire({
|
||||||
|
|||||||
Reference in New Issue
Block a user