Harry Gordon
/// <summary> /// Gets or sets a value for the Umbraco back-office path. /// </summary> public string UmbracoPath { get => Constants.System.DefaultUmbracoPath; [Obsolete($"{nameof(UmbracoPath)} is no longer configurable, property setter is scheduled for removal in V12")] // NOTE: when removing this, also clean up the hardcoded removal of UmbracoPath in UmbracoJsonSchemaGenerator set { } }
TheCultOfRa
ProNotion
Justify-Left
Justify-Right
tinymce.init({ setup: function(editor) { editor.on('ExecCommand', function(e) { var selectedNode = editor.selection.getNode(); // Get the currently selected node if (e.command === 'JustifyLeft' || e.command === 'JustifyRight') { // Remove any previously added alignment classes editor.dom.removeClass(selectedNode, 'custom-justify-left custom-justify-right'); // Check command and add the appropriate class if (e.command === 'JustifyLeft') { editor.dom.addClass(selectedNode, 'custom-justify-left'); } else if (e.command === 'JustifyRight') { editor.dom.addClass(selectedNode, 'custom-justify-right'); } } }); } });
Markus Johansson
MadhackerZA
Hooky
Bjarne Fyrstenborg
GET
POST
Debasish
theneXus
Rick
A hub and casual space for you to interact with fellow community members and learn more about Umbraco!