Don't load document if the config parameter "document.key" isn't string.

This commit is contained in:
Julia Radzhabova 2016-09-22 16:27:52 +03:00
parent f55ce0d375
commit f178d63915

View file

@ -371,6 +371,9 @@
if (!_config.document.key) { if (!_config.document.key) {
_config.document.key = 'xxxxxxxxxxxxxxxxxxxx'.replace(/[x]/g, function (c) {var r = Math.random() * 16 | 0; return r.toString(16);}); _config.document.key = 'xxxxxxxxxxxxxxxxxxxx'.replace(/[x]/g, function (c) {var r = Math.random() * 16 | 0; return r.toString(16);});
} else if (typeof _config.document.key !== 'string') {
window.alert("The \"document.key\" parameter for the config object must be string. Please correct it.");
return false;
} }
} }