summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/webtrees-1.5.1.js10
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);