diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-21 16:04:05 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-21 16:04:05 +0100 |
commit | 0440249631164a378981d014bf71b617c082bf5a (patch) | |
tree | 740d4e798c954374f115927ebc434d393368ab46 /themes/default/public/js | |
parent | 3eb951572d3f22ad37395afceb4a739ad8cd0fd6 (diff) | |
download | wallabag-0440249631164a378981d014bf71b617c082bf5a.tar.gz wallabag-0440249631164a378981d014bf71b617c082bf5a.tar.zst wallabag-0440249631164a378981d014bf71b617c082bf5a.zip |
move templates into resources
Diffstat (limited to 'themes/default/public/js')
-rw-r--r-- | themes/default/public/js/closeMessage.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/themes/default/public/js/closeMessage.js b/themes/default/public/js/closeMessage.js deleted file mode 100644 index b57fe4a8..00000000 --- a/themes/default/public/js/closeMessage.js +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
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 | ||