Open santik opened 11 years ago
can be fixed like this: if (isValidWidthChange) { //input.width(newWidth); //input.css('cssText', "width: " + newWidth + "px !important"); var styles = input.attr('style'); input.css('cssText', "width: " + newWidth + "px !important;"+styles); }
If input '.tagit-new .tagit-input' has inline styles in will lose it after entering new long tag. The problem is in if (isValidWidthChange) { //input.width(newWidth); input.css('cssText', "width: " + newWidth + "px !important"); }