Actually, ignore that, though it does point out an area that might could be tweaked on error checking. With the default config I had the color picker turned on, but not installed. It was causing all sorts of interesting things to occur. Probably could use a bit more error checking or more likely the sysalert.php file needs to be updated. Anyway, working now.
However, it appears the tagging widget is a bit wonky with the demo content. When clicking the first or second tag, it works as expected. After clicking the third tag, it inserts two spaces that are never removed. The fourth click inserts four spaces, fifth click eight spaces and so on. I got this to work by altering the join(delimeter+’ ’) tidbit in the addTag function in tags.js, once again proving even a blind squirrel occasionally finds a nut.
I don’t know how this impacts other delimiters, though, like comma separated lists. The demo content is space separated (which is silly, but that’s another discussion for another thread).
Originally (non-working, lines 50-54, tags.js):
$j(theEntry).val( oldTags.join(delimiter+' ') );
} else { // Not in the list, so add it
oldTags.push(newTag);
$j(theEntry).val( oldTags.join(delimiter+' ') );
}
Works:
$j(theEntry).val( oldTags.join(delimiter) );
} else { // Not in the list, so add it
oldTags.push(newTag);
$j(theEntry).val( oldTags.join(delimiter) );
}