From 3b1b2ddc4692776318a135a66c1da8c5dee13f64 Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Sun, 20 Dec 2015 21:59:32 +0100 Subject: Fixed valid/invalid status for app --- .../Frontend/widgets/FormInput/newjavascript.js | 55 ---------------------- 1 file changed, 55 deletions(-) delete mode 100644 afb-client/app/Frontend/widgets/FormInput/newjavascript.js (limited to 'afb-client/app/Frontend/widgets/FormInput/newjavascript.js') diff --git a/afb-client/app/Frontend/widgets/FormInput/newjavascript.js b/afb-client/app/Frontend/widgets/FormInput/newjavascript.js deleted file mode 100644 index 10280c7..0000000 --- a/afb-client/app/Frontend/widgets/FormInput/newjavascript.js +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (C) 2015 fulup - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - - var reader = new FileReader(); - // Closure to capture the file information. - reader.onload = (function(theFile) { - return function(e) { - var $title = $("

", { - text : theFile.name - }); - $result.append($title); - var $fileContent = $("
    "); - try { - - var dateBefore = new Date(); - // read the content of the file with JSZip - var zip = new JSZip(e.target.result); - var dateAfter = new Date(); - - $title.append($("", { - text:" (parsed in " + (dateAfter - dateBefore) + "ms)" - })); - - // that, or a good ol' for(var entryName in zip.files) - $.each(zip.files, function (index, zipEntry) { - $fileContent.append($("
  • ", { - text : zipEntry.name - })); - // the content is here : zipEntry.asText() - }); - // end of the magic ! - - } catch(e) { - $fileContent = $("
    ", { - "class" : "alert alert-danger", - text : "Error reading " + theFile.name + " : " + e.message - }); - } - $result.append($fileContent); - } - })(f); \ No newline at end of file -- cgit 1.2.3-korg