Home » “Catástrofe”, “locura” y “un acontecimiento fatal”

“Catástrofe”, “locura” y “un acontecimiento fatal”

by admin
“Catástrofe”, “locura” y “un acontecimiento fatal”

Ciertamente no fue su mejor día”, dijo Donis Avdijaj, del Hartberg, analizando la actuación arbitral de Arnes Talic tras el empate 0-0 contra el LASK. Ningún equipo quiso utilizarlo como excusa para un partido manejable, y con razón. El árbitro también merece respeto, Talic pidió disculpas a ambas partes tras el pitido final por un partido turbulento. “La cuestión ya está cerrada”, afirmó el tenor.

Otro tema volvió a ser el centro de atención. Porque no sólo hubo decisiones controvertidas en el empate 1-1 del Salzburgo el sábado en Linz. Por muy histórico que fuera el gol récord de Petar Ratkov después de seis segundos, su creación fue irregular. El delantero se encontraba claramente en campo contrario en el saque inicial. El árbitro Alan Kijas pasó por alto esto y el VAR no pudo intervenir, ya que esto no está previsto en situaciones de saque inicial.

“Desarrollo fatal”

Al día siguiente intervino con más frecuencia en el duelo entre Hartberg y LASK. “El VAR es una catástrofe”, afirmó el presidente del TSV, Erich Korherr. Si el asistente de vídeo intervino justificadamente en un gol en fuera de juego de Moses Usor, el duelo entre Ousmane Diakite y Valon Berisha generó discusión. Inicialmente, Talic mostró tarjeta amarilla al jugador de LASK, luego revocó la decisión tras la revisión y expulsó al centrocampista de Hartberg. Aunque Diakite pisó el pie de su oponente, no se supone que el seis hombres tuviera alguna intención y no pudo evitar la entrada de Berisha. “Esto es una locura y una exageración total”, se quejó el capitán del TSV, Jürgen Heil. En la fase final, el árbitro también anuló un penalti con la mano a Hartberg tras estudiar el vídeo.

Esto no molestó tanto al entrenador del Hartberg, Markus Schopp, como la influencia que tiene el VAR. “Son historias muy cercanas en las que siempre puedes encontrar argumentos para cada lado. Pero si como árbitro tengo la mejor perspectiva sobre el campo, y ese fue el caso con el penalti y la tarjeta roja, entonces simplemente tengo que tomar las decisiones correctas y no puedo confiar en que alguien sentado allí me ayude de todos modos. ” dijo Schopp y habló de un “evolución fatal”. Se trataría de corregir decisiones claramente equivocadas y de no tomar la mejor decisión posible en cada situación.

let LR = {
scripts: {},
_allowedScriptNames: [“smart”, “piano”, “gea”],
onConsentChanged: [],
socialMediaQueue: [],
consentDataExist: false,

handleAsyncScript: function(name, cb) {
if (this._allowedScriptNames.indexOf(name) !== -1) {
cb();
} else {
this.scripts[name] = cb;
}
},

executeAsyncScript: function(name) {
this._allowedScriptNames.push(name); // If handleAsyncScript is called after executeAsyncScript, callback will be executed immediately

if (this.scripts[name]) {
this.scripts[name]();
delete this.scripts[name];
}
}
};

window.LR = LR;

LR.getMixedConsentData = function(purposeIds = null, vendorIds = []) {
return new Promise(function (resolve) {
let gotPurposes = false;
let gotVendors = false;
let out = {
purposeConsents: [],
vendorConsents: []
};

window.__tcfapi(‘consentDataExist’, 2, function(dataExists) {
if(dataExists === true) {
sendConsents();
} else {
sendNotSets();
}
});

function sendNotSets() {
// Purposes
for(let i=1; i {
if (!UTIL.loaded.chartbeat) {
loadChartbeat();
}

window.__tcfapi(‘addEventListener’, 2, (data, success) => {

// wait for content html to render before running script
window.setTimeout(() => {
LR.executeSocialMediaQueue();
}, 500);

// Won’t do anything if already called in ‘consentDataExist’
executeTCFScripts();
}, ‘consentChanged’);
}, ‘cmpReady’);

LR.checkConsentAndAddtoQueue = (vendor, cb) => {
// only put into queue if it’s not already in there.
window.__tcfapi(‘checkConsent’, 2, (consentOK) => {
if (window.LR.socialMediaQueue.find(element => element.id === vendor.id)) {
window.LR.socialMediaQueue.find(element => element.id === vendor.id)[‘consentOK’] = consentOK;
} else {
vendor[‘consentOK’] = consentOK;
window.LR.socialMediaQueue.push(vendor);
}

if (consentOK) {
cb(true);
} else {
cb(false);
}
}, {
data: [{
vendorId: vendor.id
}],
recheckConsentOnChange: true // rechecking is done by onConsentChange listener on checkConsents
});

};

// TODO: find a method how to know if and when Vue is done rendering so we don’t have to use a derky timeout
// initial: execute additional social media embed scripts if necessary. – wait for Vue to render
window.setTimeout(() => {
LR.executeSocialMediaQueue();
}, 6000);

const socialMedia = {
‘Facebook’: {
source: ‘
onLoad: () => {
window.fbAsyncInit = function() {
FB.init({
appId : ‘579158667063181’,
autoLogAppEvents : true,
xfbml : true,
version : ‘v16.0’
});
};
},
},
‘Twitter’: {
source: ‘
},
‘Instagram’: {
source: ‘
onLoad: () => {
window[‘instgrm’].Embeds.process();
},
},
‘TikTok’: {
source: ‘
},
‘Reddit’: {
source: ‘
},
‘Pinpoll’: {
source: ‘
},
};

LR.executeSocialMediaQueue = () => {
for (const vendor of window.LR.socialMediaQueue) {
if (vendor.consentOK === true) {

if (socialMedia[vendor.name]) {
window[‘UTIL’].loadScript({
src: socialMedia[vendor.name].source,
onLoad: () => {
if (socialMedia[vendor.name].onLoad
&& typeof socialMedia[vendor.name].onLoad === ‘function’
) {
socialMedia[vendor.name].onLoad();
}
},
});
}
}
}
};

You may also like

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More

Privacy & Cookies Policy