Ok guys, I found a problem, for everyone with the same problem it was a very stupid mistake;)
The problem was that I included the main angular.min.js file before jQuery Bootstrap. Now I turn on jQuery first, then Bootstrap, and then AngularJS, and it works fine.
<link rel="stylesheet" type="text/css" href="bootstrap.css" /> <link rel="stylesheet" type="text/css" href="summernote.css" /> <script src="jquery-2.1.1.min.js"></script> <script src="bootstrap.min.js"></script> <script src="summernote.min.js"></script> <script src="angular.min.js"></script> <script src="angular-summernote.min.js"></script>
In this order, it works great for me.
A quick tip, if you also have a problem with the button size, you just need to include <!DOCTYPE html> in the main html file.
Rico
Blacksalt
source share