Here are the steps that I took:
1)First I added the ng-ckeditor.min.js into my project
2)I included it into the page like so:
<script type="text/javascript" src="Scripts/ng-ckeditor.min.js"></script>
3) I added the dependancy into the module like this:
var summariesApp = angular.module('summariesApp', ['ui.bootstrap', 'ngCkeditor']);
I am getting an error in my console: "CKEDITOR is not defined". The error is in ng-ckeditor.min.js itself.
Here is the Github:
https://github.com/esvit/ng-ckeditor
Any help with this is appreciated. Thanks in advance.