Ng Emoji Picker is an angular directive for Emoji Picker, with the following modifications:
- Removing wysiwyg editor Support
- Dynamic location for picker menu
- Moving Emoji images to /assets/images/ng-emoji-picker
using Bower.
bower install ng-emoji-picker --save
This will install the latest release.
angular.module('myApp', ['ngEmojiPicker']);
clone the img folder and place it in /assets/images/ng-emoji-picker
<input emoji-picker type="text" ng-model="chat.message"/>
<textarea emoji-picker ng-model="chat.message" emoji-attachment-location="bottom right" emoji-menu-location="top left" ng-keydown='handleKeyDown($event)'></textarea>
Just add the following css
.emoji-picker-icon{
font-size:20px;
right: 86px;
top: 17px;
}
- emoji-attachment-location
- emoji-menu-location
- --check Tether.js to know all the aligment tricks
If you found a bug or have an idea feel free to open a new issue.