Inline Editing
Inline editing allows you to edit your content using the Aurora WYSIWYG from the front-end.
Overview
To use this functionality you must be logged into Aurora and have permission to edit content.
Example
<div id="ac_ckeditor" contenteditable="true" ac_content_id="{$page.id}">
{$page.page_content}
</div>
{literal}
<script type="text/javascript">
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline( 'ac_ckeditor', {
toolbar: 'Inline'
});
</script>
{/literal}
Using inline editing does not currently support Versioning, so it will overwrite your existing version.
Updated over 2 years ago