Merge pull request #819 from hargata/Hargata/804

make it easier to test API.
This commit is contained in:
Hargata Softworks 2025-01-22 11:34:21 -07:00 committed by GitHub
commit 1ee0c27ff9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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({