Remove all YouTube code

It has been broken for quite some time. From now on this is gonna be left to handle for GStreamer plugins.
This commit is contained in:
Rafał Dzięgiel
2021-12-20 13:35:50 +01:00
parent 7a508fef39
commit f6a1aaf1dc
10 changed files with 13 additions and 1566 deletions

View File

@@ -224,22 +224,3 @@ function getIsTouch(gesture)
return false;
}
}
function encodeHTML(text)
{
return text.replace(/&/g, '&')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&apos;');
}
function decodeURIPlus(uri)
{
return decodeURI(uri.replace(/\+/g, ' '));
}
function isHex(num)
{
return Boolean(num.match(/[0-9a-f]+$/i));
}