aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/default/public/js/closeMessage.js
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-20 14:11:26 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-20 14:11:26 +0100
commit79e051a1f216704752e05f5174633abf20dde582 (patch)
treee55b7f46aad7c8df42534e638b25cdbc258a3c40 /themes/default/public/js/closeMessage.js
parent97a2dd74c872891b694bff0485a0fcc9a82a09e4 (diff)
downloadwallabag-79e051a1f216704752e05f5174633abf20dde582.tar.gz
wallabag-79e051a1f216704752e05f5174633abf20dde582.tar.zst
wallabag-79e051a1f216704752e05f5174633abf20dde582.zip
restructure folders
Diffstat (limited to 'themes/default/public/js/closeMessage.js')
-rw-r--r--themes/default/public/js/closeMessage.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/themes/default/public/js/closeMessage.js b/themes/default/public/js/closeMessage.js
new file mode 100644
index 00000000..b57fe4a8
--- /dev/null
+++ b/themes/default/public/js/closeMessage.js
@@ -0,0 +1,17 @@
1$(function(){
2 //---------------------------------------------------------------------------
3 // Show the close icon when the user hover over a message
4 //---------------------------------------------------------------------------
5 $('.messages').on('mouseenter', function(){
6 $(this).find('a.closeMessage').stop(true, true).show();
7 }).on('mouseleave', function(){
8 $(this).find('a.closeMessage').stop(true, true).hide();
9 });
10 //---------------------------------------------------------------------------
11 // Close the message box when the user clicks the close icon
12 //---------------------------------------------------------------------------
13 $('a.closeMessage').on('click', function(){
14 $(this).parents('div.messages').slideUp(300, function(){ $(this).remove(); });
15 return false;
16 });
17}); \ No newline at end of file