X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=resources%2Fsrc%2Fmediawiki%2Fmediawiki.debug.js;h=939b84122fae7650a49c8c5f6b6b352c06ccc956;hb=3df3b575c6617df64ec98533cc7141bd2314e274;hp=3c1a668064355b85cf443abeeee6555f613fba29;hpb=22b38fbbb94e1dacb39e2611f3952707c7b5e685;p=lhc%2Fweb%2Fwiklou.git diff --git a/resources/src/mediawiki/mediawiki.debug.js b/resources/src/mediawiki/mediawiki.debug.js index 3c1a668064..939b84122f 100644 --- a/resources/src/mediawiki/mediawiki.debug.js +++ b/resources/src/mediawiki/mediawiki.debug.js @@ -118,8 +118,7 @@ return $( '
' ).prop( { id: 'mw-debug-' + id, className: 'mw-debug-bit' - } ) - .appendTo( $bits ); + } ).appendTo( $bits ); } /** @@ -156,8 +155,8 @@ id: 'mw-debug-' + id, className: 'mw-debug-bit mw-debug-panelink' } ) - .append( paneLabel( id, text ) ) - .appendTo( $bits ); + .append( paneLabel( id, text ) ) + .appendTo( $bits ); } paneTriggerBitDiv( 'console', 'Console', this.data.log.length ); @@ -288,7 +287,7 @@ .append( $( 'SQL' ) ) .append( $( 'Time' ).css( 'width', '8em' ) ) .append( $( 'Call' ).css( 'width', '18em' ) ) - .appendTo( $table ); + .appendTo( $table ); for ( i = 0, length = this.data.queries.length; i < length; i += 1 ) { query = this.data.queries[ i ]; @@ -298,7 +297,7 @@ .append( $( '' ).text( query.sql ) ) .append( $( '' ).text( ( query.time * 1000 ).toFixed( 4 ) + 'ms' ) ) .append( $( '' ).text( query[ 'function' ] ) ) - .appendTo( $table ); + .appendTo( $table ); } return $table;