The aloha-rails
gem integrates the AlohaEditor editor with the Rails 3.2 asset pipeline.
1. Add aloha-rails
to your Gemfile
gem 'locomotive-aloha-rails', require: 'aloha-rails'
Then run bundle install
.
2. Use AlohaEditor
Add to your application.js:
//= require aloha
and in your erb / haml /..etc layout
= stylesheet_link_tag 'aloha/css/aloha.css'
and use AlohaEditor in your view:
<script type="text/javascript">
Aloha.ready( function() {
// Make #content editable once Aloha is loaded and ready.
Aloha.jQuery('#content').aloha();
});
</script>
Sam Pohlenz for his tinymce-rails plugin as a blueprint.
Feel free to contact me at didier at nocoffee dot fr.
Copyright (c) 2013 NoCoffee