浏览代码

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
}

/**


正在加载...
取消
保存