| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <!DOCTYPE html> | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | <!-- xlsx.js (C) 2013-2015 SheetJS http://sheetjs.com --> | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | <!-- vim: set ts=2: --> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <html> | 
					
						
							|  |  |  | <head> | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <title>JS-XLSX Live Demo</title> | 
					
						
							|  |  |  | <style> | 
					
						
							|  |  |  | #drop{ | 
					
						
							|  |  |  | 	border:2px dashed #bbb; | 
					
						
							|  |  |  | 	-moz-border-radius:5px; | 
					
						
							|  |  |  | 	-webkit-border-radius:5px; | 
					
						
							|  |  |  | 	border-radius:5px; | 
					
						
							|  |  |  | 	padding:25px; | 
					
						
							|  |  |  | 	text-align:center; | 
					
						
							|  |  |  | 	font:20pt bold,"Vollkorn";color:#bbb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #b64data{ | 
					
						
							|  |  |  | 	width:100%; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </style> | 
					
						
							|  |  |  | </head> | 
					
						
							|  |  |  | <body> | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | <b>JS-XLSX (XLSX/XLSB/XLSM/XLS/XML) Live Demo</b><br /> | 
					
						
							|  |  |  | <a href="https://github.com/SheetJS/js-xlsx">Source Code Repo</a><br /> | 
					
						
							| 
									
										
										
										
											2014-07-22 16:28:39 +00:00
										 |  |  | <a href="https://github.com/SheetJS/js-xlsx/issues">Issues?  Something look weird?  Click here and report an issue</a><br /> | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | Output Format: | 
					
						
							|  |  |  | <select name="format"> | 
					
						
							|  |  |  | <option value="csv" selected> CSV</option> | 
					
						
							|  |  |  | <option value="json"> JSON</option> | 
					
						
							|  |  |  | <option value="form"> FORMULAE</option> | 
					
						
							|  |  |  | </select><br /> | 
					
						
							|  |  |  | <!--<input type="radio" name="format" value="csv" checked> CSV<br>
 | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <input type="radio" name="format" value="json"> JSON<br> | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | <input type="radio" name="format" value="form"> FORMULAE<br> --> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | <div id="drop">Drop an XLSX / XLSM / XLSB / ODS / XLS / XML file here to see sheet data</div> | 
					
						
							| 
									
										
										
										
											2014-08-18 16:25:02 +00:00
										 |  |  | <p><input type="file" name="xlfile" id="xlf" /> ... or click here to select a file</p> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <textarea id="b64data">... or paste a base64-encoding here</textarea> | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | <input type="button" id="dotext" value="Click here to process the base64 text" onclick="b64it();"/><br /> | 
					
						
							|  |  |  | Advanced Demo Options: <br /> | 
					
						
							|  |  |  | Use Web Workers: (when available) <input type="checkbox" name="useworker" checked><br /> | 
					
						
							|  |  |  | Use Transferrables: (when available) <input type="checkbox" name="xferable" checked><br /> | 
					
						
							|  |  |  | Use readAsBinaryString: (when available) <input type="checkbox" name="userabs" checked><br /> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <pre id="out"></pre> | 
					
						
							|  |  |  | <br /> | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | <!-- uncomment the next line here and in xlsxworker.js for encoding support --> | 
					
						
							|  |  |  | <!--<script src="dist/cpexcel.js"></script>--> | 
					
						
							| 
									
										
										
										
											2014-05-17 18:52:07 +00:00
										 |  |  | <script src="shim.js"></script> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <script src="jszip.js"></script> | 
					
						
							|  |  |  | <script src="xlsx.js"></script> | 
					
						
							| 
									
										
										
										
											2014-10-10 02:12:25 +00:00
										 |  |  | <!-- uncomment the next line here and in xlsxworker.js for ODS support --> | 
					
						
							|  |  |  | <script src="ods.js"></script> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <script> | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | var X = XLSX; | 
					
						
							|  |  |  | var XW = { | 
					
						
							|  |  |  | 	/* worker message */ | 
					
						
							|  |  |  | 	msg: 'xlsx', | 
					
						
							|  |  |  | 	/* worker scripts */ | 
					
						
							|  |  |  | 	rABS: './xlsxworker2.js', | 
					
						
							|  |  |  | 	norABS: './xlsxworker1.js', | 
					
						
							|  |  |  | 	noxfer: './xlsxworker.js' | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-14 15:06:13 +00:00
										 |  |  | var rABS = typeof FileReader !== "undefined" && typeof FileReader.prototype !== "undefined" && typeof FileReader.prototype.readAsBinaryString !== "undefined"; | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | if(!rABS) { | 
					
						
							|  |  |  | 	document.getElementsByName("userabs")[0].disabled = true; | 
					
						
							|  |  |  | 	document.getElementsByName("userabs")[0].checked = false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var use_worker = typeof Worker !== 'undefined'; | 
					
						
							|  |  |  | if(!use_worker) { | 
					
						
							|  |  |  | 	document.getElementsByName("useworker")[0].disabled = true; | 
					
						
							|  |  |  | 	document.getElementsByName("useworker")[0].checked = false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-22 16:28:39 +00:00
										 |  |  | var transferable = use_worker; | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | if(!transferable) { | 
					
						
							|  |  |  | 	document.getElementsByName("xferable")[0].disabled = true; | 
					
						
							|  |  |  | 	document.getElementsByName("xferable")[0].checked = false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-22 16:28:39 +00:00
										 |  |  | var wtf_mode = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | function fixdata(data) { | 
					
						
							|  |  |  | 	var o = "", l = 0, w = 10240; | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | 	for(; l<data.byteLength/w; ++l) o+=String.fromCharCode.apply(null,new Uint8Array(data.slice(l*w,l*w+w))); | 
					
						
							|  |  |  | 	o+=String.fromCharCode.apply(null, new Uint8Array(data.slice(l*w))); | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | 	return o; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | function ab2str(data) { | 
					
						
							|  |  |  | 	var o = "", l = 0, w = 10240; | 
					
						
							|  |  |  | 	for(; l<data.byteLength/w; ++l) o+=String.fromCharCode.apply(null,new Uint16Array(data.slice(l*w,l*w+w))); | 
					
						
							|  |  |  | 	o+=String.fromCharCode.apply(null, new Uint16Array(data.slice(l*w))); | 
					
						
							|  |  |  | 	return o; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function s2ab(s) { | 
					
						
							|  |  |  | 	var b = new ArrayBuffer(s.length*2), v = new Uint16Array(b); | 
					
						
							|  |  |  | 	for (var i=0; i != s.length; ++i) v[i] = s.charCodeAt(i); | 
					
						
							|  |  |  | 	return [v, b]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | function xw_noxfer(data, cb) { | 
					
						
							|  |  |  | 	var worker = new Worker(XW.noxfer); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 	worker.onmessage = function(e) { | 
					
						
							|  |  |  | 		switch(e.data.t) { | 
					
						
							|  |  |  | 			case 'ready': break; | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 			case 'e': console.error(e.data.d); break; | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 			case XW.msg: cb(JSON.parse(e.data.d)); break; | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | 	var arr = rABS ? data : btoa(fixdata(data)); | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 	worker.postMessage({d:arr,b:rABS}); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | function xw_xfer(data, cb) { | 
					
						
							|  |  |  | 	var worker = new Worker(rABS ? XW.rABS : XW.norABS); | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | 	worker.onmessage = function(e) { | 
					
						
							|  |  |  | 		switch(e.data.t) { | 
					
						
							|  |  |  | 			case 'ready': break; | 
					
						
							|  |  |  | 			case 'e': console.error(e.data.d); break; | 
					
						
							|  |  |  | 			default: xx=ab2str(e.data).replace(/\n/g,"\\n").replace(/\r/g,"\\r"); console.log("done"); cb(JSON.parse(xx)); break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	if(rABS) { | 
					
						
							|  |  |  | 		var val = s2ab(data); | 
					
						
							|  |  |  | 		worker.postMessage(val[1], [val[1]]); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		worker.postMessage(data, [data]); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | function xw(data, cb) { | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | 	transferable = document.getElementsByName("xferable")[0].checked; | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 	if(transferable) xw_xfer(data, cb); | 
					
						
							|  |  |  | 	else xw_noxfer(data, cb); | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | function get_radio_value( radioName ) { | 
					
						
							|  |  |  | 	var radios = document.getElementsByName( radioName ); | 
					
						
							|  |  |  | 	for( var i = 0; i < radios.length; i++ ) { | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | 		if( radios[i].checked || radios.length === 1 ) { | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 			return radios[i].value; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function to_json(workbook) { | 
					
						
							|  |  |  | 	var result = {}; | 
					
						
							|  |  |  | 	workbook.SheetNames.forEach(function(sheetName) { | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 		var roa = X.utils.sheet_to_row_object_array(workbook.Sheets[sheetName]); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 		if(roa.length > 0){ | 
					
						
							|  |  |  | 			result[sheetName] = roa; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function to_csv(workbook) { | 
					
						
							|  |  |  | 	var result = []; | 
					
						
							|  |  |  | 	workbook.SheetNames.forEach(function(sheetName) { | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 		var csv = X.utils.sheet_to_csv(workbook.Sheets[sheetName]); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 		if(csv.length > 0){ | 
					
						
							|  |  |  | 			result.push("SHEET: " + sheetName); | 
					
						
							|  |  |  | 			result.push(""); | 
					
						
							|  |  |  | 			result.push(csv); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 	return result.join("\n"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function to_formulae(workbook) { | 
					
						
							|  |  |  | 	var result = []; | 
					
						
							|  |  |  | 	workbook.SheetNames.forEach(function(sheetName) { | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 		var formulae = X.utils.get_formulae(workbook.Sheets[sheetName]); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 		if(formulae.length > 0){ | 
					
						
							|  |  |  | 			result.push("SHEET: " + sheetName); | 
					
						
							|  |  |  | 			result.push(""); | 
					
						
							|  |  |  | 			result.push(formulae.join("\n")); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 	return result.join("\n"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var tarea = document.getElementById('b64data'); | 
					
						
							|  |  |  | function b64it() { | 
					
						
							| 
									
										
										
										
											2014-06-05 07:07:10 +00:00
										 |  |  | 	if(typeof console !== 'undefined') console.log("onload", new Date()); | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 	var wb = X.read(tarea.value, {type: 'base64',WTF:wtf_mode}); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 	process_wb(wb); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function process_wb(wb) { | 
					
						
							|  |  |  | 	var output = ""; | 
					
						
							|  |  |  | 	switch(get_radio_value("format")) { | 
					
						
							|  |  |  | 		case "json": | 
					
						
							| 
									
										
										
										
											2014-08-18 16:25:02 +00:00
										 |  |  | 			output = JSON.stringify(to_json(wb), 2, 2); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case "form": | 
					
						
							|  |  |  | 			output = to_formulae(wb); | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 		default: | 
					
						
							|  |  |  | 		output = to_csv(wb); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if(out.innerText === undefined) out.textContent = output; | 
					
						
							|  |  |  | 	else out.innerText = output; | 
					
						
							| 
									
										
										
										
											2014-06-05 07:07:10 +00:00
										 |  |  | 	if(typeof console !== 'undefined') console.log("output", new Date()); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var drop = document.getElementById('drop'); | 
					
						
							|  |  |  | function handleDrop(e) { | 
					
						
							|  |  |  | 	e.stopPropagation(); | 
					
						
							|  |  |  | 	e.preventDefault(); | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | 	rABS = document.getElementsByName("userabs")[0].checked; | 
					
						
							|  |  |  | 	use_worker = document.getElementsByName("useworker")[0].checked; | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 	var files = e.dataTransfer.files; | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 	var f = files[0]; | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 		var reader = new FileReader(); | 
					
						
							|  |  |  | 		var name = f.name; | 
					
						
							|  |  |  | 		reader.onload = function(e) { | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | 			if(typeof console !== 'undefined') console.log("onload", new Date(), rABS, use_worker); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 			var data = e.target.result; | 
					
						
							| 
									
										
										
										
											2014-06-29 18:35:10 +00:00
										 |  |  | 			if(use_worker) { | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 				xw(data, process_wb); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 				var wb; | 
					
						
							|  |  |  | 				if(rABS) { | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 					wb = X.read(data, {type: 'binary'}); | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | 				var arr = fixdata(data); | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 					wb = X.read(btoa(arr), {type: 'base64'}); | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				process_wb(wb); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 		if(rABS) reader.readAsBinaryString(f); | 
					
						
							|  |  |  | 		else reader.readAsArrayBuffer(f); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function handleDragover(e) { | 
					
						
							|  |  |  | 	e.stopPropagation(); | 
					
						
							|  |  |  | 	e.preventDefault(); | 
					
						
							|  |  |  | 	e.dataTransfer.dropEffect = 'copy'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if(drop.addEventListener) { | 
					
						
							|  |  |  | 	drop.addEventListener('dragenter', handleDragover, false); | 
					
						
							|  |  |  | 	drop.addEventListener('dragover', handleDragover, false); | 
					
						
							|  |  |  | 	drop.addEventListener('drop', handleDrop, false); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-18 16:25:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var xlf = document.getElementById('xlf'); | 
					
						
							|  |  |  | function handleFile(e) { | 
					
						
							|  |  |  | 	rABS = document.getElementsByName("userabs")[0].checked; | 
					
						
							|  |  |  | 	use_worker = document.getElementsByName("useworker")[0].checked; | 
					
						
							|  |  |  | 	var files = e.target.files; | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 	var f = files[0]; | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-08-18 16:25:02 +00:00
										 |  |  | 		var reader = new FileReader(); | 
					
						
							|  |  |  | 		var name = f.name; | 
					
						
							|  |  |  | 		reader.onload = function(e) { | 
					
						
							|  |  |  | 			if(typeof console !== 'undefined') console.log("onload", new Date(), rABS, use_worker); | 
					
						
							|  |  |  | 			var data = e.target.result; | 
					
						
							|  |  |  | 			if(use_worker) { | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 				xw(data, process_wb); | 
					
						
							| 
									
										
										
										
											2014-08-18 16:25:02 +00:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				var wb; | 
					
						
							|  |  |  | 				if(rABS) { | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 					wb = X.read(data, {type: 'binary'}); | 
					
						
							| 
									
										
										
										
											2014-08-18 16:25:02 +00:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 				var arr = fixdata(data); | 
					
						
							| 
									
										
										
										
											2015-04-02 22:14:07 +00:00
										 |  |  | 					wb = X.read(btoa(arr), {type: 'base64'}); | 
					
						
							| 
									
										
										
										
											2014-08-18 16:25:02 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				process_wb(wb); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		if(rABS) reader.readAsBinaryString(f); | 
					
						
							|  |  |  | 		else reader.readAsArrayBuffer(f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if(xlf.addEventListener) xlf.addEventListener('change', handleFile, false); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | </script> | 
					
						
							|  |  |  | <script type="text/javascript"> | 
					
						
							|  |  |  | 	var _gaq = _gaq || []; | 
					
						
							|  |  |  | 	_gaq.push(['_setAccount', 'UA-36810333-1']); | 
					
						
							|  |  |  | 	_gaq.push(['_trackPageview']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	(function() { | 
					
						
							|  |  |  | 		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | 
					
						
							|  |  |  | 		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | 
					
						
							|  |  |  | 		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | 
					
						
							|  |  |  | 	})(); | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> |