UX: no need to show protocol in youtube link

This commit is contained in:
Arpit Jalan 2015-05-09 01:18:42 +05:30
parent 9e7182474a
commit c2312a427a

View file

@ -66,7 +66,7 @@
innerHtml.push('<div class="html5-title-text-wrapper">');
innerHtml.push('<a class="html5-title-text" target="_blank" tabindex="3100" href="https://www.youtube.com/watch?v=', id, '">');
if (title === undefined || title === null || title === '') {
innerHtml.push('https://www.youtube.com/watch?v=' + id);
innerHtml.push('youtube.com/watch?v=' + id);
} else {
innerHtml.push(title);
}