We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Templates wont show up. They remain with display: none attribute.
display: none
My code:
<textarea rows="2" name="reviewInput" placeholder="Escribe una reseña (máximo 5.000 caracteres)." ng-model="$ctrl.model" ng-maxlength="5000" msd-elastic="msd-elastic" mentio="mentio" mentio-typed-term="typedTerm" mentio-require-leading-space="true" id="reviewInput" mentio-id="'reviewInput'" ng-trim="false" required="required" class="form-control editor" autocomplete="off"> </textarea> <mentio-menu mentio-for="'reviewInput'" mentio-trigger-char="'@'" mentio-items="$ctrl.users" mentio-search="$ctrl.searchUsers(term)" mentio-template-url="item-mentions.tpl"> </mentio-menu> <script type="text/ng-template" id="item-mentions.tpl"> <ul class="list-group dropdown-menu scrollable-menu"> <li mentio-menu-item="item" ng-repeat="item in items"> <span>{{item.username | mentioHighlight:typedTerm:'menu-highlighted'}} </span> </li> </ul> </script>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Templates wont show up. They remain with
display: none
attribute.My code:
The text was updated successfully, but these errors were encountered: