Explorar el Código

Allow JSON specified hotspot function handlers

Fixes issue mentioned here: https://github.com/mpetroff/pannellum/issues/252#issuecomment-281464915
pull/980/head^2
Wayne Myers hace 3 años
committed by GitHub
padre
commit
dc91568b23
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. +12
    -0
      src/standalone/standalone.js

+ 12
- 0
src/standalone/standalone.js Ver fichero

@@ -77,6 +77,18 @@ function parseURLParameters() {
if (configFromURL.hasOwnProperty(key)) {
continue;
}
// Handle function handlers in hotspots
                if(key === "hotSpots") {
                  responseMap[key].forEach((arr) => {
                    for (var hkey in arr) {
                      if(hkey.endsWith("Func")) {
                        arr[hkey] = window[arr[hkey]];
                      }
                    }
                  });
                }
configFromURL[key] = responseMap[key];
}



Cargando…
Cancelar
Guardar