Converted cron_upload to be able to run per-user, using user API keys

This commit is contained in:
Matthew Barbour
2020-10-08 17:14:15 -05:00
parent e82b9ea811
commit e7d11f2310
6 changed files with 157 additions and 127 deletions

View File

@ -0,0 +1,7 @@
function copyInputToClipboard(inputId) {
// Referenced from https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
let source = document.getElementById(inputId);
source.select();
source.setSelectionRange(0, 99999); /*For mobile devices*/
document.execCommand("copy");
}