ソースを参照

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
}

/**


読み込み中…
キャンセル
保存