Ole Gunnar Solskjär je po polomu proti Liverpoolu (0:5) še vedno na prepihu, a bi mu z današnjo zmago nad mestnimi tekmeci na Old Traffordu (v tem primeru bi bili ekipi na lestvici izenačeni) kritiki vse oprostili. Tudi City trenerja Pepa Guardiole (Jacka Grealisha danes ni uvrstil v začetno enajsterico) kar nujno potrebuje točke, vodilni Chelsea bi mu lahko namreč pobegnil že za 11 točk.
Angleško prvenstvo, 11. krog, danes ob 13.30:
MANCHESTER UNITED – MANCHESTER CITY
Manchester United: De Gea, Lindelof, Bailly, Maguire, Wan-Bissaka, Fernandes, McTominay, Fred, Shaw, Greenwood, Ronaldo.
Man City: Ederson, Walker, Stones, Dias, Joao Cancelo, Gundogan, Rodri, Bernardo Silva, Gabriel Jesus, De Bruyne, Foden.
Ob 16.00:
BRENTFORD – NORWICH
CHELSEA – BURNLEY
CRYSTAL PALACE – WOLVERHAMPTON
Ob 18.30:
BRIGHTON – NEWCASTLE
Nedelja ob 15.00:
ARSENAL – WATFORD
EVERTON – TOTTENHAM
LEEDS – LEICESTER
Ob 17.30:
WEST HAM – LIVERPOOL
Že odigrano:
SOUTHAMPTON – ASTON VILLA 1:0 (1:0)
Armstrong 3.
Lestvica: CHELSEA 10 8 1 1 26:3 25 LIVERPOOL 10 6 4 0 29:8 22 MANCHESTER CITY 10 6 2 2 20:6 20 WEST HAM 10 6 2 2 20:11 20 MANCHESTER UTD. 10 5 2 3 19:15 17 ARSENAL 10 5 2 3 12:13 17 WOLVERHAMPTON 10 5 1 4 11:10 16 BRIGHTON 10 4 4 2 11:11 16 TOTTENHAM 10 5 0 5 9:16 15 EVERTON 10 4 2 4 16:16 14 LEICESTER 10 4 2 4 15:17 14 SOUTHAMPTON 11 3 5 3 10:12 14 BRENTFORD 10 3 3 4 12:12 12 CRYSTAL PALACE 10 2 6 2 13:14 12 ASTON VILLA 11 3 1 7 14:20 10 WATFORD 10 3 1 6 12:18 10 LEEDS 10 2 4 4 10:17 10 BURNLEY 10 1 4 5 10:16 7 NEWCASTLE 10 0 4 6 11:23 4 NORWICH 10 0 2 8 3:25 2
// Production steps of ECMA-262, Edition 6, 22.1.2.1
Array.from||(Array.from=function(){var r;try{r=Symbol.iterator?Symbol.iterator:"Symbol(Symbol.iterator)"}catch(t){r="Symbol(Symbol.iterator)"}var t=Object.prototype.toString,n=function(r){return"function"==typeof r||"[object Function]"===t.call(r)},o=Math.pow(2,53)-1,e=function(r){var t=function(r){var t=Number(r);return isNaN(t)?0:0!==t&&isFinite(t)?(t>0?1:-1)*Math.floor(Math.abs(t)):t}(r);return Math.min(Math.max(t,0),o)};return function(t){var o=Object(t),a=n(o[r]);if(null==t&&!a)throw new TypeError("Array.from requires an array-like object or iterator - not null or undefined");var i,u=arguments.length>1?arguments[1]:void 0;if(void 0!==u){if(!n(u))throw new TypeError("Array.from: when provided, the second argument must be a function");arguments.length>2&&(i=arguments[2])}var f=e(o.length);return function(r,t,n,o,e,a){for(var i=0;i
// Dark mode, Comments & Login if (document.cookie.indexOf('darkModeEnabled=true') != -1) document.body.classList.add('dark-mode'); if (document.cookie.indexOf('showComments=true') != -1) document.body.classList.add('show-comments-enabled'); if (document.cookie.indexOf('APISESSION_USER_ID') != -1) { document.body.classList.add('user-logged-in'); } else { document.body.classList.add('user-logged-out'); }
// Mobile check var mobile = false; var mobile_xs = false;
var checkIfMobile = function checkIfMobile() { var w = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
w < 992 ? (mobile = true) : (mobile = false); // 992px = lg breakpoint w < 576 ? (mobile_xs = true) : (mobile_xs = false); // 576px = sm breakpoint }; checkIfMobile(); window.addEventListener("resize", checkIfMobile); // iOS standalone var isIos = function isIos() { var userAgent = window.navigator.userAgent.toLowerCase(); return /iphone|ipad|ipod/.test(userAgent); }; // Detects if device is on iOS var isInStandaloneMode = function isInStandaloneMode() { return "standalone" in window.navigator && window.navigator.standalone; }; // Detects if device is in iOS standalone mode var showIosNative = false; if (window.location.href.indexOf("show-ios-native") !== -1) document.cookie = "showIosNative=true"; if (document.cookie && document.cookie.indexOf("showIosNative=true") != -1) showIosNative = true; if ((isIos() && isInStandaloneMode() && mobile) || showIosNative) document.body.classList.add("ios-standalone"); // Facebook if(document.cookie && document.cookie.indexOf("cc_social=yes") > -1){ (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src="https://connect.facebook.net/sl_SI/sdk.js#xfbml=1&autoLogAppEvents=1&version=v3.1&appId=142347525793254"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); }