From 1b255c126ed25e02c1cf72217a7205c5b70634ce Mon Sep 17 00:00:00 2001 From: Cory Forsyth Date: Tue, 12 Apr 2016 11:57:46 -0400 Subject: [PATCH] [DOC] minor change for `activeSections` and `activeMarkups` --- src/js/editor/editor.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/js/editor/editor.js b/src/js/editor/editor.js index 86f250e77..7832380f1 100644 --- a/src/js/editor/editor.js +++ b/src/js/editor/editor.js @@ -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; @@ -474,6 +475,9 @@ class Editor { }); } + /** + * @type {Markup[]} + */ get activeMarkups() { return this._editState.activeMarkups; }