Skip to content

Instantly share code, notes, and snippets.

View epinorodriguez's full-sized avatar
working !

Eduardo Pino epinorodriguez

working !
View GitHub Profile
@epinorodriguez
epinorodriguez / ft.js
Last active December 7, 2015 14:05 — forked from macdonst/ft.js
FileTrasfer a bunch of files.
var remoteFiles = [];
function downloadRemotePDF() {
var local2User = JSON.parse( localStorage["locallessons"] );
$.each(local2User, function(key) {
remoteFiles.push(optionsJSON + local2User[key].idcountries + '/' + local2User[key].idcurriculum + '/' + local2User[key].idoptions + '/pdf/' + local2User[key].pdfname);
}
downloadFile();
}