First, thank you for this fantastic module, this is exactly what Drupal needs!

However I found a small annoying bug: i have a free-tagging vocabulary, width about 100 tags in it, and problem is that tags don't break, but stay on the same line, therefore overlapping everything on the page.

So i suggest adding "float:left;" property to the .tag-item in css, so that they would stay in the box
(I've attached screenshot with errorneous behaviour)

Sorry for my bad English

CommentFileSizeAuthor
bug1.jpg88.19 KBbatbug2

Comments

jimyhuang’s picture

Status: Needs review » Fixed

Great, got your suggestion.
Commit to nightly build.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

Taxoman’s picture

Version: 5.x-1.0 » 5.x-1.2
Status: Closed (fixed) » Active

I see the same issue with version 1.2.
In addition, the tags does not render nicely, partly overlapping each other (and/or too close to each other) in Firefox 3.0.1.

jimyhuang’s picture

Seems display:inline issue.
Will remove in next release, or you can also using snapshot.

kardave’s picture

Same problem, tag-list makes one long line except a tag contains white-space.

If you take a space between the spans, it woud be nice.

Example:
This all goes in one huge line:
<span>mytag</span><span>mytag</span><span>mytag</span><span>mytag</span>...

But this looks nice, making several lines:
<span>mytag</span> <span>mytag</span> <span>mytag</span> <span>mytag</span>

I could manage this by editing tagtool.js
I found the line $(this.popup).append(div);
and attached this line: $(this.popup).append(' ');

I hope the next coming release will containt this really tiny cosmetcs ;)

jimyhuang’s picture

Status: Active » Reviewed & tested by the community

Very good point for my error.
Commit to head.