I would use summernote with AngularJS. I have found https://github.com/outsideris/angular-summernote, but this doesn't work for me. The only thing I get is an Error
Error: undefined is not a function (evaluating 'element.summernote(summernoteConfig)')
I have included all required files like jquery, bootstrap, summernote, etc.
My second idea was to use summer note without the angular-summernote directive. But also that shouldn't work perfectly.
If I try
$(document).ready(function() {
$('.summernote').summernote();
});
summernote doesn't work, but If I try sth. like
$.getScript('//cdnjs.cloudflare.com/ajax/libs/summernote/0.5.1/summernote.min.js',function(){
$('#summernote').summernote();
});
it works, but I would use my local copy of summernote so the second one isn't that what I need
Hope you understood my problem and thanks for any help Rico