aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/_global/public/js/closeMessage.js
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-03-01 08:22:29 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-03-01 10:49:17 +0100
commit495aecfe7417918c45d8ea32b1ee8903018449cd (patch)
treef79e2d133e66108b3e0e814dc206d09344e72df0 /src/Wallabag/CoreBundle/Resources/views/themes/_global/public/js/closeMessage.js
parent71798e4ec428d03b1ce7116ae918a05a2d9b5044 (diff)
downloadwallabag-495aecfe7417918c45d8ea32b1ee8903018449cd.tar.gz
wallabag-495aecfe7417918c45d8ea32b1ee8903018449cd.tar.zst
wallabag-495aecfe7417918c45d8ea32b1ee8903018449cd.zip
Cleanup & simplify theme
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/_global/public/js/closeMessage.js')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/_global/public/js/closeMessage.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/_global/public/js/closeMessage.js b/src/Wallabag/CoreBundle/Resources/views/themes/_global/public/js/closeMessage.js
new file mode 100644
index 00000000..527719d5
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/_global/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