Michael L Watson

Results 2 comments of Michael L Watson

I changed line 145 of tagmanager.js $self.parent().before($el); Seemed like it was adding the tags into the tt-hint selector itself

This seemed to cause an issue if it was already prefilled, changed it to ``` opts = $self.data('opts') if(opts.prefilled.length==0){ $self.parent().before($el); }else{ $self.before($el); } ```