Skip to content

Instantly share code, notes, and snippets.

@morokhovets
Created October 20, 2011 18:56
Show Gist options
  • Save morokhovets/1301972 to your computer and use it in GitHub Desktop.
Save morokhovets/1301972 to your computer and use it in GitHub Desktop.
<% if !flash[:error].blank? -%>
<div class="red">
<%= flash[:error] %>
</div>
<% end -%>
<% form_for [:manager, @article] do |f| -%>
<%= f.text_area :content, size: "100x40", id: "article_editor" %>
<%= f.submit %>
<% end -%>
<script language="text/javascript">
CKEDITOR.replace("article_editor");
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment