Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jutaz/angular-trumbowyg
Angular component for Trumbowyg 📝
https://github.com/jutaz/angular-trumbowyg
angular angularjs component trumbowyg wysiwyg
Last synced: about 1 month ago
JSON representation
Angular component for Trumbowyg 📝
- Host: GitHub
- URL: https://github.com/jutaz/angular-trumbowyg
- Owner: jutaz
- License: mit
- Created: 2018-01-14T18:56:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-11T14:15:29.000Z (over 6 years ago)
- Last Synced: 2024-10-28T16:01:45.817Z (about 2 months ago)
- Topics: angular, angularjs, component, trumbowyg, wysiwyg
- Language: JavaScript
- Homepage:
- Size: 69.3 KB
- Stars: 3
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angular-trumbowyg
This is an angular component for [`trumbowyg`](https://github.com/Alex-D/Trumbowyg).
## Installing
`npm install angular-trumbowyg`
Load either `./dist/angular-trumbowyg.js` or `./dist/angular-trumbowyg.min.js`.
Add `trumbowyg` as your app's dependency in your app declaration.
## Usage
```html
```
This component also supports events that are emitted by the `trumbowyg` itself. Here's the list of currently supported events:
- `focus`
- `blur`
- `init`
- `change`
- `resize`
- `paste`
- `openfullscreen`
- `closefullscreen`
- `close`Any of those events can be listened on by specifying an attribute. For example, the following will listen for `blur` event:
```html
```