You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My form is using flexbox for layout, not sure that matters but..
It appears that on line 715 self.originalWidth gets set, but this is after we wrap it on line 691 which in my case is changing my width from the proper '402' (computed by flexbox) to '153'..
Moving that set to before the wrap seems to fix for me... I suppose it might also be possible to fix it by ensuring the inserted/wrapped code ends up the same width after wrapping..but that seems to defeat the purpose of saving the width anyhow, if it's just going to get changed.
Edit: setting the wrapper to match my flexbox didn't help
The text was updated successfully, but these errors were encountered:
Also, between zero tags being in the field to adding one tag, the "padding-top" gets changed from 8px to 3px..moving everything up as soon as I add a tag..but returning to 8px when I remove tags..this is being set with .css() somewhere it seems.
I really like what seems to be here so far but it shouldn't be difficult to integrate or style..
My form is using flexbox for layout, not sure that matters but..
It appears that on line 715
self.originalWidth
gets set, but this is after we wrap it on line 691 which in my case is changing my width from the proper '402' (computed by flexbox) to '153'..Moving that set to before the wrap seems to fix for me... I suppose it might also be possible to fix it by ensuring the inserted/wrapped code ends up the same width after wrapping..but that seems to defeat the purpose of saving the width anyhow, if it's just going to get changed.
Edit: setting the wrapper to match my flexbox didn't help
The text was updated successfully, but these errors were encountered: