angular-wysiwyg

WebJar for angular-wysiwyg

License

License

MIT
Categories

Categories

Angular User Interface Web Frameworks
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

angular-wysiwyg
Last Version

Last Version

1.2.4
Release Date

Release Date

Type

Type

jar
Description

Description

angular-wysiwyg
WebJar for angular-wysiwyg
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/TerryMooreII/angular-wysiwyg

Download angular-wysiwyg

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/angular-wysiwyg/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>angular-wysiwyg</artifactId>
    <version>1.2.4</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/angular-wysiwyg/
implementation 'org.webjars.bower:angular-wysiwyg:1.2.4'
// https://jarcasting.com/artifacts/org.webjars.bower/angular-wysiwyg/
implementation ("org.webjars.bower:angular-wysiwyg:1.2.4")
'org.webjars.bower:angular-wysiwyg:jar:1.2.4'
<dependency org="org.webjars.bower" name="angular-wysiwyg" rev="1.2.4">
  <artifact name="angular-wysiwyg" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='angular-wysiwyg', version='1.2.4')
)
libraryDependencies += "org.webjars.bower" % "angular-wysiwyg" % "1.2.4"
[org.webjars.bower/angular-wysiwyg "1.2.4"]

Dependencies

compile (3)

Group / Artifact Type Version
org.webjars.bower : angular jar [1.0.0,)
org.webjars.bower : angular-bootstrap-colorpicker jar [3.0.0,)
org.webjars.bower : jquery jar [2.1.3,2.2)

Project Modules

There are no modules declared in this project.

I have not had time to update this project in a long time which has caused me to fall behind on many bugs listed in the issues page. If you still depend on this project and would like to contribute please let me know or submit pull requests.

Angular WYSIWYG directive.

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

Pull Requests Welcome

Demo

$ git clone https://github.com/TerryMooreII/angular-wysiwyg.git
$ npm install 
$ gulp server

Open browser to http://localhost:4000/demo

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" textarea-menu="yourModel.customMenu"></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
textarea-menu Cusomize the wysiwyg buttons and button groups *See Below If nothing is specified then the default buttons and groups will be shown.
disabled Disable the buttons and wysiwig area

Buttons

If you don't need all of the buttons and functions of the default WYSIWYG editor you can customize it.

To do so you need to create a scope variable in your controller. This variable be an array that contains arrays of button groups.

	
	//This also happens to be the default menu options.
	$scope.yourModel.customMenu = [
            ['bold', 'italic', 'underline', 'strikethrough', 'subscript', 'superscript'],
            ['format-block'],
            ['font'],
            ['font-size'],
            ['font-color', 'hilite-color'],
            ['remove-format'],
            ['ordered-list', 'unordered-list', 'outdent', 'indent'],
            ['left-justify', 'center-justify', 'right-justify'],
            ['code', 'quote', 'paragraph'],
            ['link', 'image']
        ];

So above each array will end up being a group of the specified buttons.

Note: The font and font-size dropdowns must be in thier own group.

List of possible buttons
bold
italic
underline
strikethrough
subscript
superscript
font
font-size
font-color
hilite-color
remove-format
ordered-list
unordered-list
outdent
indent
left-justify
right-justify
center-justify
code
paragraph
quote
link
image

Versions

Version
1.2.4
1.2.2