javascript - Content Tools add br instead of p when pressing the Enter -
i need when pressing "enter" instead tag p add tag br, how can implemented? thank in advance.
contentedit (which part of contenttools) provides setting allow configure behaviour of return key in text elements - prefer_line_breaks (see settings documentation here: http://getcontenttools.com/api/content-edit#settings).
so configure application insert line breaks (br tags) when enter key pressed need set prefer_line_breaks true so:
contentedit.prefer_line_breaks = true;
Comments
Post a Comment