Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: remove tag onClick with custom ID if option externalTagId: true #213

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on May 1, 2014

  1. Update

    Fix for option externalTagId: true 
    Can't remove tag with custom ID  # var TagIdToRemove = parseInt($(this).attr("TagIdToRemove"));
    
    + tagsManager('tags_id') Return ID of tag elements
    actionm committed May 1, 2014
    Configuration menu
    Copy the full SHA
    512e95f View commit details
    Browse the repository at this point in the history
  2. Update tagmanager.js

    actionm committed May 1, 2014
    Configuration menu
    Copy the full SHA
    34c6090 View commit details
    Browse the repository at this point in the history
  3. Update tagmanager.js

    actionm committed May 1, 2014
    Configuration menu
    Copy the full SHA
    a78166d View commit details
    Browse the repository at this point in the history
  4. Added function removeTagByID

    .tagsManager("removeTagByID",'tag_html_id');
    actionm committed May 1, 2014
    Configuration menu
    Copy the full SHA
    ffca161 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2014

  1. Update tagmanager.js

    actionm committed May 3, 2014
    Configuration menu
    Copy the full SHA
    63af39a View commit details
    Browse the repository at this point in the history
  2. optionally send trigger on empty tag list

    empty : function(send_trigger)  default:true
    
    Example:
    
    
    $( "#tags_input" ).on( "tm:emptied", function() {
        alert('cleared');
    });
    
    .tagsManager("empty");  //  alert('cleared');
    .tagsManager("empty",false); // no alert
    actionm committed May 3, 2014
    Configuration menu
    Copy the full SHA
    ded04aa View commit details
    Browse the repository at this point in the history