This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"processing": "Procesando...", | |
"lengthMenu": "Mostrar _MENU_ registros", | |
"zeroRecords": "No se encontraron resultados", | |
"emptyTable": "Ningún dato disponible en esta tabla", | |
"infoEmpty": "Mostrando registros del 0 al 0 de un total de 0 registros", | |
"infoFiltered": "(filtrado de un total de _MAX_ registros)", | |
"search": "Buscar:", | |
"infoThousands": ",", | |
"loadingRecords": "Cargando...", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function copyToClipboard({text, message='Copied to clipboard', mdIcon = 'check'}) { | |
let tempInput = document.createElement('input') | |
tempInput.value = text | |
document.body.appendChild(tempInput) | |
tempInput.select(); | |
document.execCommand('copy') | |
document.body.removeChild(tempInput) | |
await createSnackbar({ | |
message: message, | |
mdIcon: mdIcon |