X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=resources%2Fsrc%2Fmediawiki%2Fmediawiki.debug.js;h=3c1a668064355b85cf443abeeee6555f613fba29;hb=3cb14f56bdf3271769a5866f9dcaad56bf873aea;hp=26c74a1af79629056e575ab550f0f7a2a6ddcd71;hpb=bdfe02223205923d923923dd420ba0dd863cd0fe;p=lhc%2Fweb%2Fwiklou.git diff --git a/resources/src/mediawiki/mediawiki.debug.js b/resources/src/mediawiki/mediawiki.debug.js index 26c74a1af7..3c1a668064 100644 --- a/resources/src/mediawiki/mediawiki.debug.js +++ b/resources/src/mediawiki/mediawiki.debug.js @@ -190,9 +190,9 @@ } bitDiv( 'phpversion' ) - .append( $( this.data.phpEngine === 'HHVM' - ? 'HHVM' - : 'PHP' + .append( $( this.data.phpEngine === 'HHVM' ? + 'HHVM' : + 'PHP' ) ) .append( ': ' + this.data.phpVersion ); @@ -231,6 +231,8 @@ /** * Build the console panel + * + * @return {jQuery} Console panel */ buildConsoleTable: function () { var $table, entryTypeText, i, length, entry; @@ -282,9 +284,9 @@ $table = $( '
' ); $( '' ) - .append( $( '#' ).css( 'width', '4em' ) ) + .append( $( '#' ).css( 'width', '4em' ) ) .append( $( 'SQL' ) ) - .append( $( 'Time' ).css( 'width', '8em' ) ) + .append( $( 'Time' ).css( 'width', '8em' ) ) .append( $( 'Call' ).css( 'width', '18em' ) ) .appendTo( $table );