Merge "auth: Follow up on e907d4328dc3e"
[lhc/web/wiklou.git] / resources / src / mediawiki.rcfilters / ui / mw.rcfilters.ui.FilterItemHighlightButton.js
index e3de55e..289f1ee 100644 (file)
@@ -1,4 +1,4 @@
-( function ( mw, $ ) {
+( function () {
        /**
         * A button to configure highlight for a filter item
         *
@@ -28,7 +28,9 @@
                // This lives inside a MenuOptionWidget, which intercepts mousedown
                // to select the item. We want to prevent that when we click the highlight
                // button
-               this.$element.on( 'mousedown', function ( e ) { e.stopPropagation(); } );
+               this.$element.on( 'mousedown', function ( e ) {
+                       e.stopPropagation();
+               } );
 
                this.updateUiBasedOnModel();
 
@@ -77,4 +79,4 @@
                                );
                } );
        };
-}( mediaWiki, jQuery ) );
+}() );