Skip to content

Instantly share code, notes, and snippets.

@srkirkland
Created March 31, 2014 21:48
Show Gist options
  • Save srkirkland/9903137 to your computer and use it in GitHub Desktop.
Save srkirkland/9903137 to your computer and use it in GitHub Desktop.
ckeditor stuff
@model dynamic
@{
ViewBag.Title = "Inline Edit";
}
<script src="http://cdnjs.cloudflare.com/ajax/libs/ckeditor/4.3.2/ckeditor.js"></script>
<h2>Inline Edit</h2>
<div id="editor" contenteditable="true">
@Html.Raw(ViewBag.FormContent)
</div>
<script>
config.extraPlugins = 'sourcearea';
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline('editor');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment