Skip to content

AppStackTop/trumbowyg-ng

 
 

Repository files navigation

Trumbowyg-ng

Angular directive for Trumbowyg editor.

Requirements

  • Angular
  • jQuery
  • Trumbowyg

Getting starting

Clone the repository

  • cd trumbowyg-ng to go into the project's root directory
  • npm install to install development dependencies
  • npm install -g bower grunt to install bower and grunt command if you don't have them already
  • bower install to install dependencies
  • grunt to build the project

Via bower

bower install trumbowyg-ng

Usage

##Add module to your angular app

angular.module('app',['trumbowyg-ng']);

##Use directive

<div trumbowyg-ng
     ng-model="editorModel"
     editor-config="{btns: ['viewHTML','bold','italic','|','link']}">
</div>

##Setup model

angular.module('app').controller('AppCtrl', function ($scope) {
    $scope.editorModel = 'SKÅL !!!';
});

For more on Trumbowyg see http://alex-d.github.io/Trumbowyg/documentation.html

#Running tests

Following command will run both unit & End-to-End (e2e) tests

grunt tests

License

This project is under MIT license. See LICENSE file for details.

About

Angular directive for Trumbowyg editor

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%