Explorar el Código

Replace `readAsBinaryString` with `readAsArrayBuffer` to work with IE 11 (fixes #104).

tags/2.2.0
Matthew Petroff hace 8 años
padre
commit
d1999f5f0b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/js/pannellum.js

+ 2
- 2
src/js/pannellum.js Ver fichero

@@ -387,7 +387,7 @@ function onImageLoad() {
function parseGPanoXMP(image) {
var reader = new FileReader();
reader.addEventListener('loadend', function() {
var img = reader.result;
var img = new Uint8Array(reader.result);

// This awful browser specific test exists because iOS 8 does not work
// with non-progressive encoded JPEGs.
@@ -459,7 +459,7 @@ function parseGPanoXMP(image) {
// Load panorama
panoImage.src = window.URL.createObjectURL(image);
});
reader.readAsBinaryString(image);
reader.readAsArrayBuffer(image);
}

/**


Cargando…
Cancelar
Guardar