Skip to content

Commit

Permalink
[DOC] minor change for activeSections and activeMarkups
Browse files Browse the repository at this point in the history
  • Loading branch information
bantic committed Apr 12, 2016
1 parent d5aefae commit 1b255c1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/js/editor/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,8 @@ class Editor {
}

/**
* @return {Section[]} The sections from the cursor's selection start to the selection end
* The sections from the cursor's selection start to the selection end
* @type {Section[]}
*/
get activeSections() {
return this._editState.activeSections;
Expand All @@ -474,6 +475,9 @@ class Editor {
});
}

/**
* @type {Markup[]}
*/
get activeMarkups() {
return this._editState.activeMarkups;
}
Expand Down

0 comments on commit 1b255c1

Please sign in to comment.