Переглянути джерело

Use configuration-specified base path with standalone viewer if it exists (fixes #188).

pull/234/head
Matthew Petroff 8 роки тому
джерело
коміт
63e032288a
1 змінених файлів з 2 додано та 1 видалено
  1. +2
    -1
      src/standalone/standalone.js

+ 2
- 1
src/standalone/standalone.js Переглянути файл

@@ -62,7 +62,8 @@ function parseURLParameters() {
var responseMap = JSON.parse(request.responseText);

// Set JSON file location
responseMap.basePath = configFromURL.config.substring(0, configFromURL.config.lastIndexOf('/')+1);
if (responseMap.basePath === undefined)
responseMap.basePath = configFromURL.config.substring(0, configFromURL.config.lastIndexOf('/')+1);

// Merge options
for (var key in responseMap) {


Завантаження…
Відмінити
Зберегти