diff options
| author | Greg Roach <fisharebest@gmail.com> | 2014-01-04 13:54:37 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2014-01-04 13:54:37 +0000 |
| commit | e7145e3f136373ea8912ec46c9bb6a3eaea9bf1c (patch) | |
| tree | f7f70b90047bd4fb74916306b8b7e877191468e2 | |
| parent | 36362d2c626c95d97e936875f2d0e232c72d37c9 (diff) | |
| download | webtrees-e7145e3f136373ea8912ec46c9bb6a3eaea9bf1c.tar.gz webtrees-e7145e3f136373ea8912ec46c9bb6a3eaea9bf1c.tar.bz2 webtrees-e7145e3f136373ea8912ec46c9bb6a3eaea9bf1c.zip | |
Use escape sequences for UTF8 characters in javascript source
| -rw-r--r-- | js/webtrees-1.5.1.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/webtrees-1.5.1.js b/js/webtrees-1.5.1.js index 8082f88f0f..a407ebf5d6 100644 --- a/js/webtrees-1.5.1.js +++ b/js/webtrees-1.5.1.js @@ -1441,11 +1441,11 @@ function activate_colorbox(config) { fixed: true, // Simple I18N - the text will need to come from PHP current: '', - previous: textDirection=='ltr' ? '◀' : '▶', - next: textDirection=='ltr' ? '▶' : '◀', - slideshowStart: '○', - slideshowStop: '●', - close: '×' + previous: textDirection=='ltr' ? '\u25c0' : '\u25b6', // ◀ ▶ + next: textDirection=='ltr' ? '\u25b6' : '\u25c0', // ▶ ◀ + slideshowStart: '\u25cb', // ○ + slideshowStop: '\u25cf', // ● + close: '\u2715' // × }); if (config) { jQuery.extend(jQuery.colorbox.settings, config); |
