app.js 387 B

12345678910111213141516
  1. $( document ).ready(function() {
  2. /* Sidebar height set */
  3. $('.sidebar').css('min-height',$(document).height());
  4. /* Secondary contact links */
  5. var scontacts = $('#contact-list-secondary');
  6. var contact_list = $('#contact-list');
  7. scontacts.hide();
  8. contact_list.mouseenter(function(){ scontacts.fadeIn(); });
  9. contact_list.mouseleave(function(){ scontacts.fadeOut(); });
  10. });