updating to 0.9.10

This commit is contained in:
SheetJS 2017-04-09 00:07:43 -04:00
parent 1e5b81a67c
commit 35061c8d48
4 changed files with 993 additions and 428 deletions

@ -21,11 +21,11 @@
</style>
</head>
<body>
<b>JS-XLSX (XLSX/XLSB/XLSM/XLS/XML) Live Demo</b><br />
<b>JS-XLSX Live Demo</b><br />
<a href="https://github.com/SheetJS/js-xlsx">Source Code Repo</a><br />
<a href="https://github.com/SheetJS/js-xlsx/issues">Issues? Something look weird? Click here and report an issue</a><br />
Output Format:
<select name="format">
<select name="format" onchange="setfmt()">
<option value="csv" selected> CSV</option>
<option value="json"> JSON</option>
<option value="form"> FORMULAE</option>
@ -185,7 +185,9 @@ function b64it() {
process_wb(wb);
}
var global_wb;
function process_wb(wb) {
global_wb = wb;
var output = "";
switch(get_radio_value("format")) {
case "json":
@ -201,6 +203,7 @@ function process_wb(wb) {
else out.innerText = output;
if(typeof console !== 'undefined') console.log("output", new Date());
}
function setfmt() {if(global_wb) process_wb(global_wb); }
var drop = document.getElementById('drop');
function handleDrop(e) {

24
xlsx.core.min.js vendored

File diff suppressed because one or more lines are too long

27
xlsx.full.min.js vendored

File diff suppressed because one or more lines are too long

1363
xlsx.js

File diff suppressed because it is too large Load Diff