next-l/enju_leaf

View on GitHub
app/assets/javascripts/select_locale.js

Summary

Maintainability
A
0 mins
Test Coverage
$(function(){
  $("body").click(function(event){
    $("#select_locale").hide();
  });
  $("#select_locale_menu").click(function(event){
    $("#select_locale").toggle();
    event.stopPropagation();
  });
});