Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 714 Bytes

File metadata and controls

38 lines (24 loc) · 714 Bytes

angular-simple-editor

Angular Simple Editor is an angular directive for the simplest editor ever. It only depends on jquery and bootstrap

Usage

  1. Include the libraries
  2. In your angular application register ui.simple-editor as a dependency.
  3. 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 Installation

bower install davidecavaliere/angular-simple-editor