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

Commit

Permalink
Merge branch 'master' into t/ckeditor5-editor-classic/41
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonkups committed Jun 19, 2017
2 parents 68d28c7 + b92342e commit 0c59ce2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# These files will be ignored by Git and by our linting tools:
# gulp lint
# gulp lint-staged
#
# Be sure to append /** to folders to have everything inside them ignored.

node_modules/**
node_modules/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@ckeditor/ckeditor5-utils": "^0.9.1"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-lint": "^3.0.0",
"@ckeditor/ckeditor5-dev-lint": "^3.1.0",
"@ckeditor/ckeditor5-basic-styles": "^0.8.1",
"@ckeditor/ckeditor5-editor-classic": "^0.7.3",
"@ckeditor/ckeditor5-enter": "^0.9.1",
Expand Down
2 changes: 1 addition & 1 deletion src/deletecommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import count from '@ckeditor/ckeditor5-utils/src/count';
* The delete command. Used by the {@link module:typing/delete~Delete delete feature} to handle the <kbd>Delete</kbd> and
* <kbd>Backspace</kbd> keys.
*
* @extends core.command.Command
* @extends module:core/command~Command
*/
export default class DeleteCommand extends Command {
/**
Expand Down
5 changes: 3 additions & 2 deletions src/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ export default class Input extends Plugin {
* Handles DOM mutations.
*
* @private
* @param {Array.<module:engine/view/document~MutatatedText|module:engine/view/document~MutatatedChildren>} mutations
* @param {Array.<module:engine/view/observer/mutationobserver~MutatedText|
* module:engine/view/observer/mutationobserver~MutatedChildren>} mutations
* @param {module:engine/view/selection~Selection|null} viewSelection
*/
_handleMutations( mutations, viewSelection ) {
Expand Down Expand Up @@ -127,7 +128,7 @@ class MutationHandler {
* Handles given mutations.
*
* @param {Array.<module:engine/view/observer/mutationobserver~MutatedText|
* module:engine/view/observer/mutationobserver~MutatatedChildren>} mutations
* module:engine/view/observer/mutationobserver~MutatedChildren>} mutations
* @param {module:engine/view/selection~Selection|null} viewSelection
*/
handle( mutations, viewSelection ) {
Expand Down

0 comments on commit 0c59ce2

Please sign in to comment.