Angular Simple Editor is an angular directive for the simplest editor ever. It only depends on jquery and bootstrap
- Include the libraries
- In your angular application register ui.simple-editor as a dependency.
- Add the necessary html to view the editor.
Registration
// Angular Registration
angular.module('app', ['ui.simple-editor']);
Bare Minimum Html
<div ng-model="content" editable></div>
Check out the demo folder where you can see a working example. https://github.com/davidecavaliere/angular-simple-editor
bower install davidecavaliere/angular-simple-editor