As the title states I followed their documentation which it not the best for someone new to it or someone who is not that good with jQuery.
My head:
<head>
{{ HTML::script('/themes/admin/js/jquery.js') }}
{{ HTML::script('/themes/admin/js/jquery-ui.js') }}
{{ HTML::script('/themes/admin/js/underscore-min.js') }}
{{ HTML::script('/themes/admin/js/vie.js') }}
{{ HTML::script('/packages/createjs/create.js') }}
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('body').midgardCreate({
url: function() { return '/admin/content/create'; }
});
jQuery('body').midgardToolbar({
display: 'full'
});
jQuery('[about]').midgardEditable({
vie: new VIE()
});
});
</script>
</head>
My editable div under body:
<div class="well col-md-3" about="/content/create">
<div property="content" contenteditable="true">
Lorem ipsum.
</div>
</div>
This lib seems really good for what I'm trying to implement however there really are not that many resources/tutorials on it.