Hi, what is the reason for adding 50 pixels to the width of the tail container when using the width: 'auto' option?
config.width = (config.width === "auto") ? el.offsetWidth + 50 : config.width;
Perhaps the 50 pixels value could be added as another config option? As it stands, it breaks my layout.
Hi, what is the reason for adding 50 pixels to the width of the tail container when using the width: 'auto' option?
config.width = (config.width === "auto") ? el.offsetWidth + 50 : config.width;Perhaps the 50 pixels value could be added as another config option? As it stands, it breaks my layout.