This commit is contained in:
Azgaar 2019-10-02 22:20:01 +03:00
parent 38abc74c11
commit c050353d70
15 changed files with 626 additions and 282 deletions

View file

@ -537,6 +537,11 @@ function parseError(error) {
return errorParsed;
}
// open URL in a new tab or window
function openURL(url) {
window.open(url, '_blank');
}
// polyfills
if (Array.prototype.flat === undefined) {
Array.prototype.flat = function() {