0.9.24 • Published 7 years ago

@codemotion/angular-mention v0.9.24

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

angular-mention

Build Status Coverage Status

@mentions and macros widget based on AngularJS.

To get started, add the following to your Controller to set up a scope variable called people:

$scope.people = [
    {label: 'Joe'},
    {label: 'Mike'},
    {label: 'Diane'}
];

Then add this to your html:

<input
    type="text"
    data-mentio
    data-mentio-typed-text="typedTerm"
    data-mentio-items="people | filter:label:typedTerm"
    data-ng-model="myval"
/>

Now you can type @ into your text field, and see a menu of choices.

There are many other options, including the ability to have multiple trigger characters, templates, binding your menu to an API, converting the selected item to markup, and more.