Przeglądaj źródła

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 lat temu
committed by GitHub
rodzic
commit
dc91568b23
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 12 dodań i 0 usunięć
  1. +12
    -0
      src/standalone/standalone.js

+ 12
- 0
src/standalone/standalone.js Wyświetl plik

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



Ładowanie…
Anuluj
Zapisz