Na prvih treh mestih ni sprememb (Belgija, Brazilija in Francija), dve mesti pa je izgubila Italija, ki je zdaj šesta. Na 4. mesto se je prebila Anglija, na 5. pa Argentina.
Lestvica Fife, 19. novembra 1. (1) BELGIJA 1.828 2. (2) BRAZILIJA 1.826 3. (3) FRANCIJA 1.786 4. (5) ANGLIJA 1.756 5. (6) ARGENTINA 1.751 6. (4) ITALIJA 1.740 7. (7) ŠPANIJA 1.704 8. (8) PORTUGALSKA 1.660 9. (10) DANSKA 1.654 10. (11) NIZOZEMSKA 1.653 11. (12) NEMČIJA 1.648 12. (13) ZDA 1.647 13. (14) ŠVICA 1.642 14. (9) MEHIKA 1.639 15. (18) HRVAŠKA 1.620 16. (16) KOLUMBIJA 1.607 17. (15) URUGVAJ 1.596 18. (17) ŠVEDSKA 1.588 19. (19) WALES 1.578 20. (20) SENEGAL 1.562 21. (22) IRAN 1.557 22. (24) PERU 1.551 23. (25) SRBIJA 1.547 24. (21) ČILE 1.541 25. (26) UKRAJINA 1.535 26. (28) JAPONSKA 1.531 27. (23) POLJSKA 1.530 28. (29) MAROKO 1.525 29. (27) TUNIZIJA 1.512 30. (33) AVSTRIJA 1.511 ... 65. (64) SLOVENIJA 1.375
// 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')); }