aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/views/default/public/js/closeMessage.js
blob: b57fe4a8b799a4a6563d7c2fed0052698e9e8b45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$(function(){
     //---------------------------------------------------------------------------
     // Show the close icon when the user hover over a message 
     //---------------------------------------------------------------------------
     $('.messages').on('mouseenter', function(){
          $(this).find('a.closeMessage').stop(true, true).show();
     }).on('mouseleave', function(){
          $(this).find('a.closeMessage').stop(true, true).hide();
     });
     //---------------------------------------------------------------------------
     // Close the message box when the user clicks the close icon
     //---------------------------------------------------------------------------
     $('a.closeMessage').on('click', function(){
          $(this).parents('div.messages').slideUp(300, function(){ $(this).remove(); });
          return false;
     });
});