since I run bower install froala-wysiwyg-editor --save
1.Add the froala dependency to my Angular project. example:
angular.module('myApp', ['froala'])
2.Create a textarea with the froala directive in my view and give it a model, where myHtml is a variable on $scope.
<textarea froala ng-model="myHtml"></textarea>
It throw some error:
Error: [$injector:nomod] Module 'froala' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
since I run
bower install froala-wysiwyg-editor --save
1.Add the froala dependency to my Angular project. example:
angular.module('myApp', ['froala'])
2.Create a textarea with the froala directive in my view and give it a model, where myHtml is a variable on $scope.<textarea froala ng-model="myHtml"></textarea>
It throw some error:
Did I miss some code?