Merge "Fix patch which fixes the reuse dropdowns"

This commit is contained in:
jenkins-bot 2014-09-17 22:36:01 +00:00 committed by Gerrit Code Review
commit 53b4bd28c0
2 changed files with 3 additions and 3 deletions

View file

@ -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 );
} );

View file

@ -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 );
} );