wikimedia/mediawiki-extensions-Translate

View on GitHub
resources/js/ext.translate.dropdownmenu.js

Summary

Maintainability
A
0 mins
Test Coverage
( function () {
    'use strict';

    $( function () {
        // Hide the dropdown menu when clicking outside of it
        $( document.documentElement ).on( 'click', function ( e ) {
            if ( !e.isDefaultPrevented() ) {
                $( '.tux-dropdown-menu' ).addClass( 'hide' );
            }
        } );
    } );
}() );