소스 검색

Set basePath correctly when the config location is specified as url parameter and config does not contain a basePath

pull/399/head
Benedikt Huß 7 년 전
부모
커밋
7904bd233c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/standalone/standalone.js

+ 1
- 1
src/standalone/standalone.js 파일 보기

@@ -66,7 +66,7 @@ function parseURLParameters() {

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

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


불러오는 중...
취소
저장