From cd162739b25665aab82147edf8f06a6b2f4e8d01 Mon Sep 17 00:00:00 2001 From: Eric Wood Date: Mon, 29 Oct 2012 15:30:02 -0500 Subject: [PATCH] Relocated zip.js files --- converter.js | 1 + index.html | 6 +++--- deflate.js => zip/deflate.js | 0 inflate.js => zip/inflate.js | 0 mime-types.js => zip/mime-types.js | 0 zip-fs.js => zip/zip-fs.js | 0 zip.js => zip/zip.js | 0 7 files changed, 4 insertions(+), 3 deletions(-) rename deflate.js => zip/deflate.js (100%) rename inflate.js => zip/inflate.js (100%) rename mime-types.js => zip/mime-types.js (100%) rename zip-fs.js => zip/zip-fs.js (100%) rename zip.js => zip/zip.js (100%) diff --git a/converter.js b/converter.js index 31aacb9..365993e 100644 --- a/converter.js +++ b/converter.js @@ -132,5 +132,6 @@ excelParser = { }; $(function() { + zip.workerScriptsPath = '/zip/'; excelParser.init(); }); diff --git a/index.html b/index.html index 4899f50..a031279 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ Excel => LaTeX - + Fork me on GitHub @@ -18,7 +18,7 @@ - - + + diff --git a/deflate.js b/zip/deflate.js similarity index 100% rename from deflate.js rename to zip/deflate.js diff --git a/inflate.js b/zip/inflate.js similarity index 100% rename from inflate.js rename to zip/inflate.js diff --git a/mime-types.js b/zip/mime-types.js similarity index 100% rename from mime-types.js rename to zip/mime-types.js diff --git a/zip-fs.js b/zip/zip-fs.js similarity index 100% rename from zip-fs.js rename to zip/zip-fs.js diff --git a/zip.js b/zip/zip.js similarity index 100% rename from zip.js rename to zip/zip.js