X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=resources%2Fsrc%2Fstartup.js;h=7e7548106fe66849bd7a7c32f2601d5d80815b43;hb=bbded40a2b26c0c7af9248db45551088b8c209ab;hp=cc313c7c74a5011a30959ec1ec08335d42921596;hpb=a7e2b91b2c72f3522a7a9c3c957a43309e70b92e;p=lhc%2Fweb%2Fwiklou.git diff --git a/resources/src/startup.js b/resources/src/startup.js index cc313c7c74..7e7548106f 100644 --- a/resources/src/startup.js +++ b/resources/src/startup.js @@ -2,22 +2,9 @@ * This file is where we decide whether to initialise the Grade A run-time. * * - Beware: This file MUST parse without errors on even the most ancient of browsers! - * - Beware: Do not call mwNow before the isCompatible() check. */ -/* global mw, mwPerformance, mwNow, isCompatible, $VARS, $CODE */ - -window.mwPerformance = ( window.performance && performance.mark ) ? performance : { - mark: function () {} -}; -// Define now() here to ensure valid comparison with mediaWikiLoadEnd (T153819). -window.mwNow = ( function () { - var perf = window.performance, - navStart = perf && perf.timing && perf.timing.navigationStart; - return navStart && typeof perf.now === 'function' ? - function () { return navStart + perf.now(); } : - function () { return Date.now(); }; -}() ); +/* global mw, isCompatible, $VARS, $CODE */ /** * See @@ -150,9 +137,9 @@ window.isCompatible = function ( str ) { }; } - window.mediaWikiLoadStart = mwNow(); - mwPerformance.mark( 'mwLoadStart' ); - + if ( window.performance && performance.mark ) { + performance.mark( 'mwStartup' ); + } script = document.createElement( 'script' ); script.src = $VARS.baseModulesUri; script.onload = function () {