소스 검색

Allow for new lines in hot spot text (fixes #307).

pull/318/head
Matthew Petroff 8 년 전
부모
커밋
2158d8502d
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      src/js/pannellum.js

+ 2
- 1
src/js/pannellum.js 파일 보기

@@ -2132,7 +2132,8 @@ function escapeHTML(s) {
.replace("'", ''')
.replace('<', '&lt;')
.replace('>', '&gt;')
.replace('/', '&#x2f;');
.replace('/', '&#x2f;')
.replace('\n', '<br>'); // Allow line breaks
}

/**


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