Sfoglia il codice sorgente

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

pull/318/head
Matthew Petroff 8 anni fa
parent
commit
2158d8502d
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      src/js/pannellum.js

+ 2
- 1
src/js/pannellum.js Vedi File

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

/**


Caricamento…
Annulla
Salva