Adding title to the player html template

This commit is contained in:
Walter Cruz
2017-08-28 10:19:29 -03:00
parent 3fe0c7c84b
commit f50f0eb63d
2 changed files with 6 additions and 0 deletions

View File

@ -1298,6 +1298,11 @@
// Replace all id references with random numbers
html = _replaceAll(html, '{id}', Math.floor(Math.random() * (10000)));
// Replace Title, if it exists
if (config.title){
html = _replaceAll(html, '{title}', config.title);
}
// Controls container
var target;