Exclude tag text when creating textual message representation in dragging layer (#3257)

This commit is contained in:
Aleksander Machniak 2014-08-05 07:46:45 -04:00
parent 54cc9e9cb0
commit ba17a19bf6

View file

@ -599,7 +599,7 @@ function tag_find(uid)
// create and return tag box element
function tag_box_element(tag, del_btn)
{
var span = $('<span class="tagbox"></span>')
var span = $('<span class="tagbox skip-on-drag"></span>')
.text(tag.name).data('tag', tag.uid);
tag_set_color(span, tag);