1. Find defined.js file under the following location in the SharePoint server,
‘\Inetpub\wwwroot\wss\VirtualDirectories\80\ARTEeditor\editor\_source\internals\defined.js’
2. The default code in defined.js file is,
ARTEConfig.ToolbarSets[“Default”] = [
[‘Source’, ‘-‘, ‘Preview’, ‘-‘], // Removed Templates
[‘Cut’, ‘Copy’, ‘Paste’, ‘PasteWord’, ‘-‘, ‘Print’, ‘netSpellCheck’],
[‘Undo’, ‘Redo’, ‘-‘, ‘Find’, ‘Replace’, ‘-‘, ‘SelectAll’, ‘RemoveFormat’],
[‘Image’, ‘Table’, ‘Rule’, ‘Link’, ‘Unlink’, ‘Anchor’], // Thomas Removed SpecialChar Added Link Unlink Anchor
[‘Bold’, ‘Italic’, ‘Underline’, ‘StrikeThrough’, ‘-‘, ‘Subscript’, ‘Superscript’],
[‘OrderedList’, ‘UnorderedList’, ‘-‘, ‘Outdent’, ‘Indent’, ‘Blockquote’],
[‘JustifyLeft’, ‘JustifyCenter’, ‘JustifyRight’, ‘JustifyFull’],
//[‘Link’,’Unlink’,’Anchor’],
‘/’,
[‘Style’, ‘FontFormat’, ‘FontName’, ‘FontSize’]
// No comma for the last row.
] ;
3. Modify the default code with the code below,
ARTEConfig.ToolbarSets[“Default”] = [
[‘Preview’, ‘Cut’, ‘Copy’, ‘Paste’, ‘PasteWord’, ‘-‘, ‘Print’, ‘netSpellCheck’],
[‘Undo’, ‘Redo’, ‘-‘, ‘Find’, ‘Replace’, ‘-‘, ‘SelectAll’, ‘RemoveFormat’],
[‘JustifyLeft’, ‘JustifyCenter’, ‘JustifyRight’, ‘JustifyFull’],
[‘Image’,’Table’,’Link’,’Unlink’,’Anchor’], // Thomas Removed SpecialChar Added Link Unlink Anchor
[‘Bold’,’Italic’,’Underline’,’-‘,’Subscript’,’Superscript’],
[‘OrderedList’,’UnorderedList’,’-‘,’Outdent’,’Indent’,’Blockquote’],
‘/’,
[‘FontFormat’]
// No comma for the last row.
] ;
Leave a Reply