From 8275fb69a1375e4c968040bcff0bc961ca2ac009 Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 3 Aug 2013 16:32:21 +0000 Subject: [PATCH] in document.title, use mdash as separator --- static/js/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/utils.js b/static/js/utils.js index af360ebf..27922c0f 100644 --- a/static/js/utils.js +++ b/static/js/utils.js @@ -836,7 +836,7 @@ pandora.getClipVideos = function(clip, resolution) { } else if (pandora.user.ui.section == 'texts') { parts.push(pandora.user.ui.text ? pandora.user.ui.text : Ox._('Texts')); } - return parts.join(' - '); + return parts.join(' – '); }; }()); @@ -1233,7 +1233,7 @@ pandora.getPageTitle = function(stateOrURL) { ); return page ? pandora.site.site.name - + (page.title ? ' - ' + page.title : '') + + (page.title ? ' – ' + page.title : '') : null; };