Bläddra i källkod

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 3 år sedan
committed by GitHub
förälder
incheckning
dc91568b23
Ingen känd nyckel hittad för denna signaturen i databasen GPG-nyckel ID: 4AEE18F83AFDEB23
1 ändrade filer med 12 tillägg och 0 borttagningar
  1. +12
    -0
      src/standalone/standalone.js

+ 12
- 0
src/standalone/standalone.js Visa fil

@@ -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];
}



Laddar…
Avbryt
Spara