Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Peter Gregory 408 posts 1614 karma points MVP 3x admin c-trib
    Dec 22, 2010 @ 00:45
    Peter Gregory
    0

    Clear Tags not working

    Hi there is also an error with clear tags.

    It removes all the tags from the box but does not serialiseTags() after doing it.

        $('#' + autoTags.clearButton).click(function (e) {
    $('div.tags li').remove();
    e.preventDefault();
    return false;

    });

    To get clear tags to work again you need to do the following

        $('#' + autoTags.clearButton).click(function (e) {
    $('div.tags li').remove();
    serialiseTags();
    e.preventDefault();
    return false;

    });

  • Peter Gregory 408 posts 1614 karma points MVP 3x admin c-trib
    Dec 22, 2010 @ 22:16
    Peter Gregory
    1

    Another thing that I found also that only seems to effect IE is that the clear tags button has focus so if you hit enter the tags are cleared.  This happens if you have any part of the editing dashboard focused.

    I suggest putting at least a javascript confirm box on the clear to stop it instantly removing the tags.

  • elspiko 133 posts 302 karma points
    Dec 23, 2010 @ 12:35
    elspiko
    0

    Thanks alot again for these Peter, they're most helpful. I'll get these included ASAP

  • Stefan Kip 1614 posts 4131 karma points c-trib
    Sep 26, 2011 @ 10:12
    Stefan Kip
    0

    It's a shame you didn't include this is one of your latest releases...

  • elspiko 133 posts 302 karma points
    Sep 29, 2011 @ 10:57
    elspiko
    0

    Not sure what happened, but its now back in as of v2.2.1

    Thanks for the heads up

Please Sign in or register to post replies

Write your reply to:

Draft