mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 04:43:18 +00:00
Merge "Fix patch which fixes the reuse dropdowns"
This commit is contained in:
commit
53b4bd28c0
|
@ -109,7 +109,7 @@
|
|||
'original'
|
||||
);
|
||||
|
||||
this.downloadSizeMenu.on( 'select', function( item ) {
|
||||
this.downloadSizeMenu.getMenu().on( 'select', function( item ) {
|
||||
mw.mmv.actionLogger.log( 'download-select-menu-' + item.data.name );
|
||||
} );
|
||||
|
||||
|
|
|
@ -196,7 +196,7 @@
|
|||
'default'
|
||||
);
|
||||
|
||||
this.embedSizeSwitchWikitext.on( 'select', function( item ) {
|
||||
this.embedSizeSwitchWikitext.getMenu().on( 'select', function( item ) {
|
||||
mw.mmv.actionLogger.log( 'embed-select-menu-wikitext-' + item.data.name );
|
||||
} );
|
||||
|
||||
|
@ -207,7 +207,7 @@
|
|||
'original'
|
||||
);
|
||||
|
||||
this.embedSizeSwitchHtml.on( 'select', function( item ) {
|
||||
this.embedSizeSwitchHtml.getMenu().on( 'select', function( item ) {
|
||||
mw.mmv.actionLogger.log( 'embed-select-menu-html-' + item.data.name );
|
||||
} );
|
||||
|
||||
|
|
Loading…
Reference in a new issue