I'm trying to make markitup! work with rails 3.1, the magic happens inside my posts controller, so I threw the markup javascript in assets/javascript and added in my posts.js (so only textarea in posts view would get appended)
$(document).ready(function() {
$(".markItUp").markItUp(mySettings);
});
in my assets/stylesheets/posts.css
.markItUpHeader ul .markItUpDropMenu {
background:transparent url(images/menu.png) no-repeat 115% 50%;
margin-right:5px;
}
further more I change
images/menu.png to <% asset_path 'menu.png' %>
so it would get the good asset_path images path
in the jquery.markitup.js file I changed the root path to
options = {
root: '<%= asset_path 'jquery.markitup.js' %>'
so it won't use the markitup made function to check for root set and use my root instead
jquery.markitup.js.erb
// compute markItUp! path
if(!options.root) {
etc .... (does the markitup path computation for the .js file
so it would get the right path to the main js file my _form.html.erb file is
<%= f.text_area :content, :class => 'markItUp' %>
this does work as it does show the text area with the width:700px that is set in posts.css.erb
.markItUp {
width:700px;
etc ....
but still nothing else shows or works, I don't have the small toolbar above my text area for the text editing (B, I etc...)
thank you in advance, Guy.
markItUp documentation: http://markitup.jaysalvat.com/documentation/