forked from wallabag/wallabag
can add tags from the saving link popup
This commit is contained in:
@ -4,6 +4,8 @@ $.fn.ready(function() {
|
||||
$bagitForm = $('#bagit-form'),
|
||||
$bagitFormForm = $('#bagit-form-form');
|
||||
|
||||
$("#tags2add").hide();
|
||||
|
||||
/* ==========================================================================
|
||||
bag it link and close button
|
||||
========================================================================== */
|
||||
@ -78,6 +80,11 @@ $.fn.ready(function() {
|
||||
event.preventDefault();
|
||||
});
|
||||
|
||||
$('#showtaginput').click(function(){
|
||||
$('#tags2add').toggle();
|
||||
});
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Keyboard gestion
|
||||
========================================================================== */
|
||||
|
||||
Reference in New Issue
Block a user