I built this because I needed a lot more stuff that wasn't included in the default textAngular. This is a work in progress and currently includes the following extras:
- Colorpicker via angular-bootstrap-colorpicker
- Font family
- Font size
- Indent / outdent
- Added angular-ui bootstrap dropdown toggle to hold common items
- h1-h6 and p formatBlocks
- text alignment
Many thanks for the hard work put in by @fraywing on textAngular and @buberdds on angular-bootstrap-colorpicker.
AngularJS
≥1.2.x
;Angular Sanitize
≥1.2.x
.
- Bootstrap 3.x for the default styles
- Font-Awesome 4.x for the default icons on the toolbar
- Rangy 1.x for better activeState detection and more dynamic plugins, also the selectionsaverestore module.
NOTE: If you are using angular-sanitize
anywhere you need to pick one of angular-sanitize
OR textAngular-sanitize
as the latter is our fork of the angular-sanitize
file so loading both may cause conflicts.
Via Bower:
Run bower install textAngular
from the command line.
Include script tags similar to the following:
<script src='/bower_components/textAngular/textAngular-sanitize.js'></script>
<script src='/bower_components/textAngular/textAngular.js'></script>
Via CDNJS:
Include script tags similar to the following:
<script src='http://cdnjs.cloudflare.com/ajax/libs/textAngular/1.2.0/textAngular-sanitize.min.js'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/textAngular/1.2.0/textAngular.min.js'></script>
Via jsDelivr:
Include script tags similar to the following:
<script src='//cdn.jsdelivr.net/angular.textangular/1.2.0/textAngular-sanitize.min.js'></script>
<script src='//cdn.jsdelivr.net/angular.textangular/1.2.0/textAngular.min.js'></script>
Via Github
Download the code from https://github.com/fraywing/textAngular/releases/latest, unzip the files then add script tags similar to the following:
<script src='/path/to/unzipped/files/textAngular-sanitize.js'></script>
<script src='/path/to/unzipped/files/textAngular.js'></script>
- Include
textAngular.js
ortextAngular.min.js
andtextAngular-sanitize.js
ortextAngular-sanitize.min.js
in your project using script tags - Add a dependency to
textAngular
in your app module, for example:angular.module('myModule', ['textAngular'])
. - Create an element to hold the editor and add an
ng-model="htmlVariable"
attribute wherehtmtlVariable
is the scope variable that will hold the HTML entered into the editor:
<div text-angular ng-model="htmlVariable"></div>
OR
<text-angular ng-model="htmlVariable"></div>
This acts similar to a regular AngularJS / form input if you give it a name attribute, allowing for form submission and AngularJS form validation.
Have fun!
Important Note: Though textAngular supports the use of all attributes in it's input, please note that angulars ng-bind-html WILL strip out all of your style attributes.
For Additional options see the github Wiki.
textAngular uses execCommand
for the rich-text functionality.
That being said, its still a fairly experimental browser feature-set, and may not behave the same in all browsers - see http://tifftiff.de/contenteditable/compliance_test.html for a full compliance list.
It has been tested to work on Chrome, Safari, Opera, Firefox and Internet Explorer 8+.
If you find something, please let me know - throw me a message, or submit a issue request!
When checking out, you need a node.js installation, running npm install
will get you setup with everything to run the unit tests and minification.
This project is licensed under the MIT license.
Special thanks to all the contributions thus far!
Including those from: