aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/js/switchbox.js
blob: 9e8167a3334999e2642f2727aa37910022d9a2c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
function switchBox(link, box) {
  jQuery(link).click(function() {
    var elt = jQuery(box);
    elt.css("left", Math.min( jQuery(this).offset().left, jQuery(window).width() - elt.outerWidth(true) - 5))
      .css("top", jQuery(this).offset().top + jQuery(this).outerHeight(true))
      .toggle();
  });
  jQuery(box).on("mouseleave click", function() {
    jQuery(this).hide();
  });
}