Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Feature: Implemented debounced mechanism for requesting a mention feed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlewand authored Dec 18, 2019
2 parents d4aa594 + f677cd9 commit f50db9c
Show file tree
Hide file tree
Showing 12 changed files with 807 additions and 76 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"@ckeditor/ckeditor5-core": "^16.0.0",
"@ckeditor/ckeditor5-ui": "^16.0.0",
"@ckeditor/ckeditor5-typing": "^16.0.0",
"@ckeditor/ckeditor5-utils": "^16.0.0"
"@ckeditor/ckeditor5-utils": "^16.0.0",
"lodash-es": "^4.17.10"
},
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "^16.0.0",
Expand All @@ -31,6 +32,7 @@
"eslint-config-ckeditor5": "^2.0.0",
"husky": "^1.3.1",
"lint-staged": "^7.0.0",
"lodash": "^4.17.11",
"stylelint": "^11.1.1",
"stylelint-config-ckeditor5": "^1.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/mentionediting.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export function _addMentionAttributes( baseMentionData, data ) {
* @protected
* @param {module:engine/view/element~Element} viewElementOrMention
* @param {String|Object} [data] Mention data to be extended.
* @return {module:mention/mention~MentionAttribute}
* @returns {module:mention/mention~MentionAttribute}
*/
export function _toMentionAttribute( viewElementOrMention, data ) {
const dataMention = viewElementOrMention.getAttribute( 'data-mention' );
Expand Down
Loading

0 comments on commit f50db9c

Please sign in to comment.