aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/_global/js/saveLink.js
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2015-01-21 23:04:35 +0100
committerThomas Citharel <tcit@tcit.fr>2015-01-21 23:04:35 +0100
commit14d98f0611d195774eb4da011a56fe1ffac76ea4 (patch)
treeda6313f6b338430ef9f36ee9c701637af94ca17c /themes/_global/js/saveLink.js
parentcdde19d6096c85a3ed9b9399482bcc04bb79583c (diff)
downloadwallabag-14d98f0611d195774eb4da011a56fe1ffac76ea4.tar.gz
wallabag-14d98f0611d195774eb4da011a56fe1ffac76ea4.tar.zst
wallabag-14d98f0611d195774eb4da011a56fe1ffac76ea4.zip
can add tags from the saving link popup
Diffstat (limited to 'themes/_global/js/saveLink.js')
-rwxr-xr-xthemes/_global/js/saveLink.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/themes/_global/js/saveLink.js b/themes/_global/js/saveLink.js
index a7acd84c..9f66b73f 100755
--- a/themes/_global/js/saveLink.js
+++ b/themes/_global/js/saveLink.js
@@ -4,6 +4,8 @@ $.fn.ready(function() {
4 $bagitForm = $('#bagit-form'), 4 $bagitForm = $('#bagit-form'),
5 $bagitFormForm = $('#bagit-form-form'); 5 $bagitFormForm = $('#bagit-form-form');
6 6
7$("#tags2add").hide();
8
7 /* ========================================================================== 9 /* ==========================================================================
8 bag it link and close button 10 bag it link and close button
9 ========================================================================== */ 11 ========================================================================== */
@@ -78,6 +80,11 @@ $.fn.ready(function() {
78 event.preventDefault(); 80 event.preventDefault();
79 }); 81 });
80 82
83$('#showtaginput').click(function(){
84 $('#tags2add').toggle();
85});
86
87
81 /* ========================================================================== 88 /* ==========================================================================
82 Keyboard gestion 89 Keyboard gestion
83 ========================================================================== */ 90 ========================================================================== */