mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-28 01:50:09 +00:00
Remove the 640 bucket
It decreases the likelihood of Varnish hits and is only 11% smaller on average in file weight than the 800 bucket. Bug: T102870 Change-Id: I8611791a192fa7b0e638ccfc886733b75bf30aed
This commit is contained in:
parent
05969fe382
commit
ecc5b58cfa
|
@ -1070,7 +1070,7 @@ $wgResourceModules += array(
|
|||
$wgHooks['EventLoggingRegisterSchemas'][] = function( array &$schemas ) {
|
||||
$schemas += array(
|
||||
'MediaViewer' => 10867062,
|
||||
'MultimediaViewerNetworkPerformance' => 11030254,
|
||||
'MultimediaViewerNetworkPerformance' => 12458951,
|
||||
'MultimediaViewerDuration' => 10427980,
|
||||
'MultimediaViewerAttribution' => 9758179,
|
||||
'MultimediaViewerDimensions' => 10014238,
|
||||
|
|
|
@ -68,7 +68,6 @@
|
|||
// default image widths
|
||||
widthBuckets: [
|
||||
320,
|
||||
640,
|
||||
800,
|
||||
1024,
|
||||
1280,
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
|
||||
assert.strictEqual( twc.findNextBucket( 200 ), 320, 'Low target size gives us lowest possible size bucket' );
|
||||
assert.strictEqual( twc.findNextBucket( 320 ), 320, 'Asking for a bucket size gives us exactly that bucket size' );
|
||||
assert.strictEqual( twc.findNextBucket( 320.00001 ), 640, 'Asking for greater than an image bucket definitely gives us the next size up' );
|
||||
assert.strictEqual( twc.findNextBucket( 320.00001 ), 800, 'Asking for greater than an image bucket definitely gives us the next size up' );
|
||||
assert.strictEqual( twc.findNextBucket( 2000 ), 2560, 'The image bucketing also works on big screens' );
|
||||
assert.strictEqual( twc.findNextBucket( 3000 ), 2880, 'The image bucketing also works on REALLY big screens' );
|
||||
} );
|
||||
|
|
Loading…
Reference in a new issue