in document.title, use mdash as separator

This commit is contained in:
rolux 2013-08-03 16:32:21 +00:00
parent cf378611c8
commit 8275fb69a1

View file

@ -836,7 +836,7 @@ pandora.getClipVideos = function(clip, resolution) {
} else if (pandora.user.ui.section == 'texts') { } else if (pandora.user.ui.section == 'texts') {
parts.push(pandora.user.ui.text ? pandora.user.ui.text : Ox._('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 return page
? pandora.site.site.name ? pandora.site.site.name
+ (page.title ? ' - ' + page.title : '') + (page.title ? ' ' + page.title : '')
: null; : null;
}; };