vrigzalejo / angular-wysiwyg

An AngularJS WYSIWYG directive that multiple instances and two-way data-binding.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Angular WYSIWYG directive.

[Demo] (http://embed.plnkr.co/yxMbI54wYUlxu2hSpfw8/preview)

![Awesome Shot] (https://raw.github.com/TerryMooreII/angular-wysiwyg/master/screenshots/screenshot.png)

Installation

bower install angular-wysiwyg

Required dependancies

Install each dependancy to your AngularJS project.

Add 'wysiwyg.module' to your main angular.module like so

angular.module('myapp', ['myApp.controllers', 'myApp.services', 'wysiwyg.module']);

Usage

<wysiwyg textarea-id="question" textarea-class="form-control"  textarea-height="80px" textarea-name="textareaQuestion" textarea-required ng-model="yourModel.model" enable-bootstrap-title="true"></wysiwyg>

Options

Option Description
ng-model REQUIRED - The angular data model
textarea-id The id to assign to the editable div
textarea-class The class(es) to assign to the the editable div
textarea-height If the height is not specified in a text-area class then the hight of the editable div (default: 80px)
textarea-name The name attribute of the editable div
textarea-required True/False HTML/AngularJS required validation
enable-bootstrap-title True/False whether or not to show the button hover title styled with bootstrap

About

An AngularJS WYSIWYG directive that multiple instances and two-way data-binding.

License:MIT License