arraglado bug con el token cuando se cambiaba tarifa a por horas

This commit is contained in:
2023-12-07 16:49:08 +01:00
parent ab6763aeaa
commit 62f0031630
312 changed files with 58826 additions and 3 deletions

View File

@ -0,0 +1,23 @@
/**
* Clipboard
*/
'use strict';
(function () {
const clipboardList = [].slice.call(document.querySelectorAll('.clipboard-btn'));
if (ClipboardJS) {
clipboardList.map(function (clipboardEl) {
const clipboard = new ClipboardJS(clipboardEl);
clipboard.on('success', function (e) {
if (e.action == 'copy') {
toastr['success']('', 'Copied to Clipboard!!');
}
});
});
} else {
clipboardList.map(function (clipboardEl) {
clipboardEl.setAttribute('disabled', true);
});
}
})();