Преглед изворни кода

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 година
committed by GitHub
родитељ
комит
dc91568b23
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 12 додато и 0 уклоњено
  1. +12
    -0
      src/standalone/standalone.js

+ 12
- 0
src/standalone/standalone.js Прегледај датотеку

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



Loading…
Откажи
Сачувај