-
Notifications
You must be signed in to change notification settings - Fork 378
Open
Labels
Description
Simple code to add a nbsp button:
Jodit.modules.Icon.set('insertNbsp', '<svg viewBox="0 0 100 40" width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="96" height="36" rx="6" ry="6" fill="#f0f0f0" stroke="#333" stroke-width="3"/></svg>');
Jodit.defaultOptions.controls.insertNbsp = {
icon: 'insertNbsp',
tooltip: 'Insert nbsp',
exec: (editor) => editor.selection.insertHTML(' '),
};
Reactions are currently unavailable